diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 2912a1d34..f9c17ad3c 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -1,9 +1,23 @@ ## 0.23.0 -### Notes for upgrading from `<= 0.21.0` versions of CLI + +### Features + +* Add a "None of the above" choice for the Editor step in the `new` wizard +* **settings.json:** disable ionic html tags + +### Bug fixes + +* **transpile:** create tsProj every time to avoid crashing +* **sourcemaps:** stop adding non-existent sourcemaps to sourcemap + +### Notes for Upgrading from `<= 0.21.0` Versions of CLI + Version `0.22.0` of the CLI made changes to the `aurelia.json` file. This release has fixed issues with source maps; however, these changes require users who are upgrading existing projects to make the following tweaks to their `aurelia.json` file to enjoy these fixes: -- replace all instances of `\\` with `/` in file paths -- replace `"scripts/require.js"` with `node_modules/requirejs/require.js"` -- the `text` dependency in the `vendor-bundle.js` dependencies is an object literal as shown below. It should be replaced with just the string `"text"` + +* replace all instances of `\\` with `/` in file paths +* replace `"scripts/require.js"` with `node_modules/requirejs/require.js"` +* the `text` dependency in the `vendor-bundle.js` dependencies is an object literal as shown below. It should be replaced with just the string `"text"`. + ```javascript { "text", diff --git a/lib/dependencies.js b/lib/dependencies.js index 10afbc53f..522998425 100644 --- a/lib/dependencies.js +++ b/lib/dependencies.js @@ -3,7 +3,7 @@ let versionMap = { "aurelia-animator-css": "^1.0.0", "aurelia-bootstrapper": "^1.0.0", - "aurelia-cli": "^0.22.0", + "aurelia-cli": "^0.23.0", "aurelia-testing": "^1.0.0-beta.2.0.0", "aurelia-tools": "^0.2.2", "autoprefixer": "^6.3.6", diff --git a/package.json b/package.json index b8dea51fe..acde9e516 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aurelia-cli", - "version": "0.22.0", + "version": "0.23.0", "description": "The command line tooling for Aurelia.", "keywords": [ "aurelia",