diff options
author | kpdecker <kpdecker@gmail.com> | 2013-05-31 14:16:19 -0400 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2013-05-31 14:16:45 -0400 |
commit | f63b226b7659d73b71bb7dd58c78ab4df1498633 (patch) | |
tree | 77bf93aa29dbbeb1eb16494a5af29ffc9fd07ece | |
parent | 16fd601a5caab026f26fa8adb63e90e22d9f5d77 (diff) | |
download | handlebars.js-f63b226b7659d73b71bb7dd58c78ab4df1498633.zip handlebars.js-f63b226b7659d73b71bb7dd58c78ab4df1498633.tar.gz handlebars.js-f63b226b7659d73b71bb7dd58c78ab4df1498633.tar.bz2 |
Update to 1.0.0 final
-rw-r--r-- | bower.json | 2 | ||||
-rw-r--r-- | dist/handlebars.js | 2 | ||||
-rw-r--r-- | dist/handlebars.runtime.js | 2 | ||||
-rw-r--r-- | handlebars.js.nuspec | 2 | ||||
-rw-r--r-- | lib/handlebars/base.js | 2 | ||||
-rw-r--r-- | release-notes.md | 6 |
6 files changed, 10 insertions, 6 deletions
@@ -1,6 +1,6 @@ { "name": "handlebars.js", - "version": "1.0.0-rc.4", + "version": "1.0.0", "main": "dist/handlebars.js", "ignore": [ "node_modules", diff --git a/dist/handlebars.js b/dist/handlebars.js index e2c394f..c70f09d 100644 --- a/dist/handlebars.js +++ b/dist/handlebars.js @@ -29,7 +29,7 @@ var Handlebars = {}; ; // lib/handlebars/base.js -Handlebars.VERSION = "1.0.0-rc.4"; +Handlebars.VERSION = "1.0.0"; Handlebars.COMPILER_REVISION = 4; Handlebars.REVISION_CHANGES = { diff --git a/dist/handlebars.runtime.js b/dist/handlebars.runtime.js index 7e88761..b9f4e49 100644 --- a/dist/handlebars.runtime.js +++ b/dist/handlebars.runtime.js @@ -29,7 +29,7 @@ var Handlebars = {}; ; // lib/handlebars/base.js -Handlebars.VERSION = "1.0.0-rc.4"; +Handlebars.VERSION = "1.0.0"; Handlebars.COMPILER_REVISION = 4; Handlebars.REVISION_CHANGES = { diff --git a/handlebars.js.nuspec b/handlebars.js.nuspec index 9a16cc0..4515f2e 100644 --- a/handlebars.js.nuspec +++ b/handlebars.js.nuspec @@ -2,7 +2,7 @@ <package> <metadata> <id>handlebars.js</id> - <version>1.0.0-rc.4</version> + <version>1.0.0</version> <authors>handlebars.js Authors</authors> <licenseUrl>https://github.com/wycats/handlebars.js/blob/master/LICENSE</licenseUrl> <projectUrl>https://github.com/wycats/handlebars.js/</projectUrl> diff --git a/lib/handlebars/base.js b/lib/handlebars/base.js index e1cd712..44a369c 100644 --- a/lib/handlebars/base.js +++ b/lib/handlebars/base.js @@ -6,7 +6,7 @@ var Handlebars = {}; // BEGIN(BROWSER) -Handlebars.VERSION = "1.0.0-rc.4"; +Handlebars.VERSION = "1.0.0"; Handlebars.COMPILER_REVISION = 4; Handlebars.REVISION_CHANGES = { diff --git a/release-notes.md b/release-notes.md index 477fc22..8e67619 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,6 +1,10 @@ # Release Notes ## Development +[Commits](https://github.com/wycats/handlebars.js/compare/v1.0.12...master) + +## v1.0.12 / 1.0.0 - May 31 2013 + - [#515](https://github.com/wycats/handlebars.js/issues/515) - Add node require extensions support ([@jjclark1982](https://github.com/jjclark1982)) - [#517](https://github.com/wycats/handlebars.js/issues/517) - Fix amd precompiler output with directories ([@blessenm](https://github.com/blessenm)) - [#433](https://github.com/wycats/handlebars.js/issues/433) - Add support for unicode ids @@ -18,7 +22,7 @@ Compatibility notes: follow this convention should add the additional brace value. - Code that relies on global the namespace being muted when custom helpers or partials are passed will need to explicitly pass an `undefined` value for any helpers that should not be available. -[Commits](https://github.com/wycats/handlebars.js/compare/v1.0.11...master) +[Commits](https://github.com/wycats/handlebars.js/compare/v1.0.11...v1.0.12) ## v1.0.11 / 1.0.0-rc4 - May 13 2013 |