Skip to content

Commit

Permalink
chore(all): prepare release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Feb 14, 2018
1 parent 75c1e38 commit f59e2e9
Show file tree
Hide file tree
Showing 9 changed files with 18 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-templating-binding",
"version": "1.4.0",
"version": "1.4.1",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ define(['exports', 'aurelia-logging', 'aurelia-binding', 'aurelia-templating'],
SyntaxInterpreter.prototype._getPrimaryPropertyName = function _getPrimaryPropertyName(resources, context) {
var type = resources.getAttribute(context.attributeName);
if (type && type.primaryProperty) {
return type.primaryProperty.name;
return type.primaryProperty.attribute;
}
return null;
};
Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ export class SyntaxInterpreter {
_getPrimaryPropertyName(resources, context) {
let type = resources.getAttribute(context.attributeName);
if (type && type.primaryProperty) {
return type.primaryProperty.name;
return type.primaryProperty.attribute;
}
return null;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ var SyntaxInterpreter = exports.SyntaxInterpreter = (_temp2 = _class3 = function
SyntaxInterpreter.prototype._getPrimaryPropertyName = function _getPrimaryPropertyName(resources, context) {
var type = resources.getAttribute(context.attributeName);
if (type && type.primaryProperty) {
return type.primaryProperty.name;
return type.primaryProperty.attribute;
}
return null;
};
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ export let SyntaxInterpreter = (_temp2 = _class3 = class SyntaxInterpreter {
_getPrimaryPropertyName(resources, context) {
let type = resources.getAttribute(context.attributeName);
if (type && type.primaryProperty) {
return type.primaryProperty.name;
return type.primaryProperty.attribute;
}
return null;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/native-modules/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ export var SyntaxInterpreter = (_temp2 = _class3 = function () {
SyntaxInterpreter.prototype._getPrimaryPropertyName = function _getPrimaryPropertyName(resources, context) {
var type = resources.getAttribute(context.attributeName);
if (type && type.primaryProperty) {
return type.primaryProperty.name;
return type.primaryProperty.attribute;
}
return null;
};
Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ System.register(['aurelia-logging', 'aurelia-binding', 'aurelia-templating'], fu
SyntaxInterpreter.prototype._getPrimaryPropertyName = function _getPrimaryPropertyName(resources, context) {
var type = resources.getAttribute(context.attributeName);
if (type && type.primaryProperty) {
return type.primaryProperty.name;
return type.primaryProperty.attribute;
}
return null;
};
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.4.1"></a>
## [1.4.1](https://github.com/aurelia/templating-binding/compare/1.4.0...v1.4.1) (2018-02-14)


### Bug Fixes

* **syntax-interpreter:** use the hyphenated name ([4e4c427](https://github.com/aurelia/templating-binding/commit/4e4c427)), closes [#122](https://github.com/aurelia/templating-binding/issues/122)



<a name="1.4.0"></a>
# [1.4.0](https://github.com/aurelia/templating-binding/compare/1.3.0...v1.4.0) (2017-10-02)

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-binding",
"version": "1.4.0",
"version": "1.4.1",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit f59e2e9

Please sign in to comment.