diff --git a/components/bower.json b/components/bower.json index b84af54cd..9b52d6927 100644 --- a/components/bower.json +++ b/components/bower.json @@ -1,6 +1,6 @@ { "name": "handlebars", - "version": "4.1.2", + "version": "4.1.2-0", "main": "handlebars.js", "license": "MIT", "dependencies": {} diff --git a/components/handlebars.js.nuspec b/components/handlebars.js.nuspec index bae498e04..8685b6a4d 100644 --- a/components/handlebars.js.nuspec +++ b/components/handlebars.js.nuspec @@ -2,7 +2,7 @@ handlebars.js - 4.1.2 + 4.1.2-0 handlebars.js Authors https://github.com/wycats/handlebars.js/blob/master/LICENSE https://github.com/wycats/handlebars.js/ diff --git a/components/package.json b/components/package.json index cf5e4964d..1cc2e70e7 100644 --- a/components/package.json +++ b/components/package.json @@ -1,6 +1,6 @@ { "name": "handlebars", - "version": "4.1.2", + "version": "4.1.2-0", "license": "MIT", "jspm": { "main": "handlebars", diff --git a/lib/handlebars/base.js b/lib/handlebars/base.js index 768870069..0bbd67110 100644 --- a/lib/handlebars/base.js +++ b/lib/handlebars/base.js @@ -4,7 +4,7 @@ import {registerDefaultHelpers} from './helpers'; import {registerDefaultDecorators} from './decorators'; import logger from './logger'; -export const VERSION = '4.1.2'; +export const VERSION = '4.1.2-0'; export const COMPILER_REVISION = 7; export const REVISION_CHANGES = { diff --git a/package.json b/package.json index 2d9a1bd95..520b08e31 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "handlebars", "barename": "handlebars", - "version": "4.1.2", + "version": "4.1.2-0", "description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration", "homepage": "http://www.handlebarsjs.com/", "keywords": [ @@ -63,6 +63,10 @@ }, "main": "lib/index.js", "types": "types/index.d.ts", + "browser": { + ".": "./dist/handlebars.min.js", + "./runtime": "./dist/handlebars.runtime.min.js" + }, "bin": { "handlebars": "bin/handlebars" }, diff --git a/release-notes.md b/release-notes.md index 0d63048d9..100fda684 100644 --- a/release-notes.md +++ b/release-notes.md @@ -2,7 +2,15 @@ ## Development -[Commits](https://github.com/wycats/handlebars.js/compare/v4.1.2...master) +[Commits](https://github.com/wycats/handlebars.js/compare/v4.1.2-0...master) + +## v4.1.2-0 - August 25th, 2019 +[#1540](https://github.com/wycats/handlebars.js/pull/1540) - added browser to package.json, resolves #1102 ([@ouijan](https://api.github.com/users/ouijan)) + +Compatibility notes: +- We are not sure if imports via webpack are still working, which is why this release is a pre-release + +[Commits](https://github.com/wycats/handlebars.js/compare/v4.1.2...v4.1.2-0) ## v4.1.2 - April 13th, 2019 Chore/Test: