Skip to content

Commit

Permalink
chore(all): prepare release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jan 6, 2017
1 parent c3aa763 commit 97e2419
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 8 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": "1.1.0",
"version": "1.1.1",
"description": "A powerful client-side router.",
"keywords": [
"aurelia",
Expand Down
4 changes: 3 additions & 1 deletion dist/amd/aurelia-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,9 @@ define(['exports', 'aurelia-logging', 'aurelia-route-recognizer', 'aurelia-depen
return this.parent.updateTitle();
}

this.currentInstruction._updateTitle();
if (this.currentInstruction) {
this.currentInstruction._updateTitle();
}
return undefined;
};

Expand Down
4 changes: 3 additions & 1 deletion dist/aurelia-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -1418,7 +1418,9 @@ export class Router {
return this.parent.updateTitle();
}

this.currentInstruction._updateTitle();
if (this.currentInstruction) {
this.currentInstruction._updateTitle();
}
return undefined;
}

Expand Down
4 changes: 3 additions & 1 deletion dist/commonjs/aurelia-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,9 @@ var Router = exports.Router = function () {
return this.parent.updateTitle();
}

this.currentInstruction._updateTitle();
if (this.currentInstruction) {
this.currentInstruction._updateTitle();
}
return undefined;
};

Expand Down
4 changes: 3 additions & 1 deletion dist/es2015/aurelia-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,9 @@ export let Router = class Router {
return this.parent.updateTitle();
}

this.currentInstruction._updateTitle();
if (this.currentInstruction) {
this.currentInstruction._updateTitle();
}
return undefined;
}

Expand Down
4 changes: 3 additions & 1 deletion dist/native-modules/aurelia-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,9 @@ export var Router = function () {
return this.parent.updateTitle();
}

this.currentInstruction._updateTitle();
if (this.currentInstruction) {
this.currentInstruction._updateTitle();
}
return undefined;
};

Expand Down
4 changes: 3 additions & 1 deletion dist/system/aurelia-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -1389,7 +1389,9 @@ System.register(['aurelia-logging', 'aurelia-route-recognizer', 'aurelia-depende
return this.parent.updateTitle();
}

this.currentInstruction._updateTitle();
if (this.currentInstruction) {
this.currentInstruction._updateTitle();
}
return undefined;
};

Expand Down
10 changes: 10 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="1.1.1"></a>
## [1.1.1](https://github.com/aurelia/router/compare/1.1.0...v1.1.1) (2017-01-06)


### Bug Fixes

* **Router:** fix an error when updateTitle is called but there is not current instruction ([872fda1](https://github.com/aurelia/router/commit/872fda1))



<a name="1.1.0"></a>
# [1.1.0](https://github.com/aurelia/router/compare/1.0.7...v1.1.0) (2016-12-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": "1.1.0",
"version": "1.1.1",
"description": "A powerful client-side router.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 97e2419

Please sign in to comment.