Skip to content

Commit e817d49

Browse files
prep for 0.2.18
1 parent 72bef43 commit e817d49

File tree

6 files changed

+32
-5
lines changed

6 files changed

+32
-5
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ bower_components
1010

1111
# webstorm files
1212
.idea
13+
*.iml
14+
*.ipr
15+
*.iws

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22
**/.*
33

44
# Build related stuff
5+
/build
56
/config
67
/lib
78
/ngdoc_assets
89
/sample
910
/test
1011
/bower_components
12+
/node_modules
1113
Gruntfile.js
1214
files.js
1315

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
<a name="0.2.18"></a>
2+
### 0.2.18 (2016-02-07)
3+
4+
This is a maintenance release which fixes a few known bugs introduced in 0.2.16.
5+
6+
#### Bug Fixes
7+
8+
* **$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))
9+
* **uiState:** Corrected typo for 'ref' variable (#2488, #2508) ([b8f3c144](https://github.com/angular-ui/ui-router/commit/b8f3c144b913e620f177b78f3b4f52afa61d41a6))
10+
* **$urlMatcherFactory:** Fix to make the YUI Javascript compressor work ([ad9c41d2](https://github.com/angular-ui/ui-router/commit/ad9c41d2e723d50e30dd3452fbd274b7057dc3d9))
11+
* **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))
12+
* **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.
13+
14+
15+
#### Features
16+
17+
* **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.
18+
19+
120
<a name="0.2.17"></a>
221
### 0.2.17 (2016-01-25)
322

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "angular-ui-router",
3-
"version": "0.2.17",
3+
"version": "0.2.18",
44
"license" : "MIT",
55
"main": "./release/angular-ui-router.js",
66
"dependencies": {
7-
"angular": ">= 1.0.8"
7+
"angular": "^1.0.8"
88
},
99
"ignore": [
1010
"**/.*",

component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-ui-router",
3-
"version": "0.2.17",
3+
"version": "0.2.18",
44
"description": "State-based routing for AngularJS",
55
"keywords": [
66
"angular",

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-ui-router",
33
"description": "State-based routing for AngularJS",
4-
"version": "0.2.17",
4+
"version": "0.2.18",
55
"homepage": "http://angular-ui.github.com/",
66
"contributors": [
77
{
@@ -36,13 +36,16 @@
3636
"bugs": {
3737
"url": "https://github.com/angular-ui/ui-router/issues"
3838
},
39+
"license": "MIT",
3940
"licenses": [
4041
{
4142
"type": "MIT",
4243
"url": "https://github.com/angular-ui/ui-router/blob/master/LICENSE"
4344
}
4445
],
45-
"dependencies": {},
46+
"dependencies": {
47+
"angular": "^1.0.8"
48+
},
4649
"devDependencies": {
4750
"faithful-exec": "~0.1.0",
4851
"grunt": "~0.4.1",

0 commit comments

Comments
 (0)