Skip to content

Commit

Permalink
chore(all): prepare release 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Feb 6, 2015
1 parent 9cc337d commit 33cd77d
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-router",
"version": "0.5.4",
"version": "0.5.5",
"description": "A powerful client-side router.",
"keywords": [
"aurelia",
Expand Down
2 changes: 2 additions & 0 deletions dist/amd/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ define(["exports", "aurelia-route-recognizer", "aurelia-path", "./navigation-con
}

navModel.title = navModel.title || config.title;
navModel.settings = config.settings || (config.settings = {});

this.routes.push(config);
this.recognizer.add([{ path: config.route, handler: config }]);
Expand All @@ -211,6 +212,7 @@ define(["exports", "aurelia-route-recognizer", "aurelia-path", "./navigation-con
}]);

withChild.navModel = navModel;
withChild.settings = config.settings;
}

config.navModel = navModel;
Expand Down
2 changes: 2 additions & 0 deletions dist/commonjs/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ var Router = exports.Router = (function () {
}

navModel.title = navModel.title || config.title;
navModel.settings = config.settings || (config.settings = {});

this.routes.push(config);
this.recognizer.add([{ path: config.route, handler: config }]);
Expand All @@ -210,6 +211,7 @@ var Router = exports.Router = (function () {
}]);

withChild.navModel = navModel;
withChild.settings = config.settings;
}

config.navModel = navModel;
Expand Down
2 changes: 2 additions & 0 deletions dist/es6/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ export class Router {
}

navModel.title = navModel.title || config.title;
navModel.settings = config.settings || (config.settings = {});

this.routes.push(config);
this.recognizer.add([{path:config.route, handler: config}]);
Expand All @@ -179,6 +180,7 @@ export class Router {
}]);

withChild.navModel = navModel;
withChild.settings = config.settings;
}

config.navModel = navModel;
Expand Down
2 changes: 2 additions & 0 deletions dist/system/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ System.register(["aurelia-route-recognizer", "aurelia-path", "./navigation-conte
}

navModel.title = navModel.title || config.title;
navModel.settings = config.settings || (config.settings = {});

this.routes.push(config);
this.recognizer.add([{ path: config.route, handler: config }]);
Expand All @@ -221,6 +222,7 @@ System.register(["aurelia-route-recognizer", "aurelia-path", "./navigation-conte
}]);

withChild.navModel = navModel;
withChild.settings = config.settings;
}

config.navModel = navModel;
Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.5.5 (2015-02-06)


#### Features

* **router:** enable dedicated user setting for route config ([9cc337d0](http://github.com/aurelia/router/commit/9cc337d0be4125c3c500c3bf95f446981dc41511), closes [#23](http://github.com/aurelia/router/issues/23))


### 0.5.4 (2015-02-03)


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-router",
"version": "0.5.4",
"version": "0.5.5",
"description": "A powerful client-side router.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 33cd77d

Please sign in to comment.