Skip to content

Commit

Permalink
chore(all): prepare release 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jan 23, 2015
1 parent 7fa4735 commit 2c83ebd
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 6 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-templating",
"version": "0.8.0",
"version": "0.8.1",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down
4 changes: 3 additions & 1 deletion dist/amd/resource-coordinator.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,10 +279,12 @@ define(["exports", "aurelia-loader", "aurelia-path", "aurelia-dependency-injecti
org = Origin.get(element.value);
} else if (resources.length) {
org = Origin.get(resources[0].value);
} else {
org = Origin.get(source);
}

if (org) {
this.id = org.id;
this.id = org.moduleId;
}
}

Expand Down
4 changes: 3 additions & 1 deletion dist/commonjs/resource-coordinator.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,12 @@ var ResourceModule = (function () {
org = Origin.get(element.value);
} else if (resources.length) {
org = Origin.get(resources[0].value);
} else {
org = Origin.get(source);
}

if (org) {
this.id = org.id;
this.id = org.moduleId;
}
}

Expand Down
4 changes: 3 additions & 1 deletion dist/es6/resource-coordinator.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,12 @@ class ResourceModule {
org = Origin.get(element.value);
}else if(resources.length){
org = Origin.get(resources[0].value);
}else{
org = Origin.get(source);
}

if(org){
this.id = org.id;
this.id = org.moduleId;
}
}

Expand Down
4 changes: 3 additions & 1 deletion dist/system/resource-coordinator.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,12 @@ System.register(["aurelia-loader", "aurelia-path", "aurelia-dependency-injection
org = Origin.get(element.value);
} else if (resources.length) {
org = Origin.get(resources[0].value);
} else {
org = Origin.get(source);
}

if (org) {
this.id = org.id;
this.id = org.moduleId;
}
}

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.8.1 (2015-01-23)


#### Bug Fixes

* **resource-coordinator:** incorrectly setting analyzed module ids ([7fa47357](http://github.com/aurelia/templating/commit/7fa47357408aedca21eb882a89c3bf8e43560e7b))


## 0.8.0 (2015-01-22)


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-templating",
"version": "0.8.0",
"version": "0.8.1",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 2c83ebd

Please sign in to comment.