Skip to content

Commit

Permalink
chore(all): prepare release 0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Dec 3, 2016
1 parent b185579 commit ae5f755
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
22 changes: 18 additions & 4 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion lib/dependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-cli",
"version": "0.22.0",
"version": "0.23.0",
"description": "The command line tooling for Aurelia.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit ae5f755

Please sign in to comment.