Skip to content

Commit

Permalink
prep for 0.2.18
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherthielen committed Feb 7, 2016
1 parent 72bef43 commit e817d49
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ bower_components

# webstorm files
.idea
*.iml
*.ipr
*.iws
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
**/.*

# Build related stuff
/build
/config
/lib
/ngdoc_assets
/sample
/test
/bower_components
/node_modules
Gruntfile.js
files.js

Expand Down
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
<a name="0.2.18"></a>
### 0.2.18 (2016-02-07)

This is a maintenance release which fixes a few known bugs introduced in 0.2.16.

#### Bug Fixes

* **$urlRouter:** revert BC: resolve clashing of routes This reverts commit b5c57c8ec2e14e17e75104 ([2f1ebefc](https://github.com/angular-ui/ui-router/commit/2f1ebefc242ff48960e0bf63da359296a38f6852), closes [#2501](https://github.com/angular-ui/ui-router/issues/2501))
* **uiState:** Corrected typo for 'ref' variable (#2488, #2508) ([b8f3c144](https://github.com/angular-ui/ui-router/commit/b8f3c144b913e620f177b78f3b4f52afa61d41a6))
* **$urlMatcherFactory:** Fix to make the YUI Javascript compressor work ([ad9c41d2](https://github.com/angular-ui/ui-router/commit/ad9c41d2e723d50e30dd3452fbd274b7057dc3d9))
* **stateBuilder:** fix non-url params on a state without a url. The parameters are now applied when ([d6d8c332](https://github.com/angular-ui/ui-router/commit/d6d8c3322c4dde8bb5b8dde25f9fcda49e9c4c81), closes [#2025](https://github.com/angular-ui/ui-router/issues/2025))
* **ui-view:** (ui-view) use static renderer when no animation is present for a ui-view ([2523bbdb](https://github.com/angular-ui/ui-router/commit/2523bbdb5542483a489c22804f1751b8b9f71703), closes [#2485](https://github.com/angular-ui/ui-router/issues/2485)). This allows a ui-view scope to be destroyed when switching states, before the next view is initialized.


#### Features

* **ui-view:** Add noanimation attribute to specify static renderer. ([2523bbdb](https://github.com/angular-ui/ui-router/commit/2523bbdb5542483a489c22804f1751b8b9f71703), closes [#2485](https://github.com/angular-ui/ui-router/issues/2485)). This allows a ui-view scope to be destroyed before the next ui-view is initialized, when ui-view animation is not present.


<a name="0.2.17"></a>
### 0.2.17 (2016-01-25)

Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "angular-ui-router",
"version": "0.2.17",
"version": "0.2.18",
"license" : "MIT",
"main": "./release/angular-ui-router.js",
"dependencies": {
"angular": ">= 1.0.8"
"angular": "^1.0.8"
},
"ignore": [
"**/.*",
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-ui-router",
"version": "0.2.17",
"version": "0.2.18",
"description": "State-based routing for AngularJS",
"keywords": [
"angular",
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-ui-router",
"description": "State-based routing for AngularJS",
"version": "0.2.17",
"version": "0.2.18",
"homepage": "http://angular-ui.github.com/",
"contributors": [
{
Expand Down Expand Up @@ -36,13 +36,16 @@
"bugs": {
"url": "https://github.com/angular-ui/ui-router/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/angular-ui/ui-router/blob/master/LICENSE"
}
],
"dependencies": {},
"dependencies": {
"angular": "^1.0.8"
},
"devDependencies": {
"faithful-exec": "~0.1.0",
"grunt": "~0.4.1",
Expand Down

0 comments on commit e817d49

Please sign in to comment.