Skip to content

Commit

Permalink
chore(all): prepare release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Feb 27, 2017
1 parent 8ef8840 commit 5c03ff8
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 14 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.2.0",
"version": "1.2.1",
"description": "A powerful client-side router.",
"keywords": [
"aurelia",
Expand Down
3 changes: 1 addition & 2 deletions dist/amd/aurelia-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -1238,8 +1238,7 @@ define(['exports', 'aurelia-logging', 'aurelia-route-recognizer', 'aurelia-depen

if (_viewPortPlan.childNavigationInstruction) {
findDeactivatable(_viewPortPlan.childNavigationInstruction.plan, callbackName, list);
}
if (prevComponent) {
} else if (prevComponent) {
addPreviousDeactivatable(prevComponent, callbackName, list);
}
}
Expand Down
3 changes: 1 addition & 2 deletions dist/aurelia-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -1669,8 +1669,7 @@ function findDeactivatable(plan, callbackName, list: Array<Object> = []): Array<

if (viewPortPlan.childNavigationInstruction) {
findDeactivatable(viewPortPlan.childNavigationInstruction.plan, callbackName, list);
}
if (prevComponent) {
} else if (prevComponent) {
addPreviousDeactivatable(prevComponent, callbackName, list);
}
}
Expand Down
3 changes: 1 addition & 2 deletions dist/commonjs/aurelia-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -1193,8 +1193,7 @@ function findDeactivatable(plan, callbackName) {

if (_viewPortPlan.childNavigationInstruction) {
findDeactivatable(_viewPortPlan.childNavigationInstruction.plan, callbackName, list);
}
if (prevComponent) {
} else if (prevComponent) {
addPreviousDeactivatable(prevComponent, callbackName, list);
}
}
Expand Down
3 changes: 1 addition & 2 deletions dist/es2015/aurelia-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -1040,8 +1040,7 @@ function findDeactivatable(plan, callbackName, list = []) {

if (viewPortPlan.childNavigationInstruction) {
findDeactivatable(viewPortPlan.childNavigationInstruction.plan, callbackName, list);
}
if (prevComponent) {
} else if (prevComponent) {
addPreviousDeactivatable(prevComponent, callbackName, list);
}
}
Expand Down
3 changes: 1 addition & 2 deletions dist/native-modules/aurelia-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -1172,8 +1172,7 @@ function findDeactivatable(plan, callbackName) {

if (_viewPortPlan.childNavigationInstruction) {
findDeactivatable(_viewPortPlan.childNavigationInstruction.plan, callbackName, list);
}
if (prevComponent) {
} else if (prevComponent) {
addPreviousDeactivatable(prevComponent, callbackName, list);
}
}
Expand Down
3 changes: 1 addition & 2 deletions dist/system/aurelia-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,7 @@ System.register(['aurelia-logging', 'aurelia-route-recognizer', 'aurelia-depende

if (_viewPortPlan.childNavigationInstruction) {
findDeactivatable(_viewPortPlan.childNavigationInstruction.plan, callbackName, list);
}
if (prevComponent) {
} else if (prevComponent) {
addPreviousDeactivatable(prevComponent, callbackName, list);
}
}
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.2.1"></a>
## [1.2.1](https://github.com/aurelia/router/compare/1.2.0...v1.2.1) (2017-02-27)


### Bug Fixes

* **activation:** regression in deactivate ([8ef8840](https://github.com/aurelia/router/commit/8ef8840))



<a name="1.2.0"></a>
# [1.2.0](https://github.com/aurelia/router/compare/1.1.1...v1.2.0) (2017-02-21)

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

0 comments on commit 5c03ff8

Please sign in to comment.