Skip to content

Commit 87958f0

Browse files
committed
version bump v1.0.0
1 parent c87571a commit 87958f0

File tree

8 files changed

+17
-8
lines changed

8 files changed

+17
-8
lines changed

HISTORY.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
[1.0.0](https://github.com/paularmstrong/swig/tree/v1.0.0) / 2013-09-23
2+
-------------------------------------------------------------------------------
3+
4+
* **Fixed** Allow parent and other tags to work correctly nested in other tags. gh-331
5+
* **Fixed** Prevent lexer from matching partial logic/words in variables. gh-330
6+
7+
Migrating from v0.x.x? View the [Migration Guide](https://github.com/paularmstrong/swig/wiki/Migrating-from-v0.x.x-to-v1.0.0)
8+
19
[1.0.0-rc3](https://github.com/paularmstrong/swig/tree/v1.0.0-rc3) / 2013-09-14
210
-------------------------------------------------------------------------------
311

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Need Help? Have Questions? Comments?
2121

2222
* [Mailing List/Google Group](http://groups.google.com/forum/#!forum/swig-templates)
2323
* [StackOverflow](http://stackoverflow.com/questions/tagged/swig-template)
24+
* [Migration Guide](https://github.com/paularmstrong/swig/wiki/Migrating-from-v0.x.x-to-v1.0.0)
2425

2526
Installation
2627
------------

browser/comments.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/*! Swig v1.0.0-rc3 | https://paularmstrong.github.com/swig | @license https://github.com/paularmstrong/swig/blob/master/LICENSE */
1+
/*! Swig v1.0.0 | https://paularmstrong.github.com/swig | @license https://github.com/paularmstrong/swig/blob/master/LICENSE */
22
/*! DateZ (c) 2011 Tomo Universalis | @license https://github.com/TomoUniversalis/DateZ/blob/master/LISENCE */

docs/docs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "v1.0.0-rc3"
2+
"version": "v1.0.0"
33
}

docs/index.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "v1.0.0-rc3"
2+
"version": "v1.0.0"
33
}

lib/swig.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ var fs = require('fs'),
99
/**
1010
* Swig version number as a string.
1111
* @example
12-
* if (swig.version === "1.0.0-rc3") { ... }
12+
* if (swig.version === "1.0.0") { ... }
1313
*
1414
* @type {String}
1515
*/
16-
exports.version = "1.0.0-rc3";
16+
exports.version = "1.0.0";
1717

1818
/**
1919
* Swig Options Object. This object can be passed to many of the API-level Swig methods to control various aspects of the engine. All keys are optional.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "swig",
3-
"version": "1.0.0-rc3",
3+
"version": "1.0.0",
44
"description": "A simple, powerful, and extendable templating engine for node.js and browsers, similar to Django, Jinja2, and Twig.",
55
"keywords": [
66
"template",

tests/basic.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ function resetOptions() {
1313
}
1414

1515
describe('version', function () {
16-
it('is 1.0.0-rc3', function () {
17-
expect(swig.version).to.equal('1.0.0-rc3');
16+
it('is 1.0.0', function () {
17+
expect(swig.version).to.equal('1.0.0');
1818
});
1919
});
2020

0 commit comments

Comments
 (0)