Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-beta.2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jun 16, 2016
1 parent b13c420 commit 3016472
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 332 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.0.0-beta.2.0.0",
"version": "1.0.0-beta.2.0.1",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
Expand Down
2 changes: 2 additions & 0 deletions dist/amd/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ define(['exports', 'aurelia-logging', 'aurelia-binding', 'aurelia-templating'],
this.register('input', 'formnovalidate', 'formNoValidate');
this.register('input', 'formtarget', 'formTarget');

this.register('textarea', 'maxlength', 'maxLength');

this.register('td', 'rowspan', 'rowSpan');
this.register('td', 'colspan', 'colSpan');
this.register('th', 'rowspan', 'rowSpan');
Expand Down
2 changes: 2 additions & 0 deletions dist/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ export class AttributeMap {
this.register('input', 'formnovalidate', 'formNoValidate');
this.register('input', 'formtarget', 'formTarget');

this.register('textarea', 'maxlength', 'maxLength');

this.register('td', 'rowspan', 'rowSpan');
this.register('td', 'colspan', 'colSpan');
this.register('th', 'rowspan', 'rowSpan');
Expand Down
2 changes: 2 additions & 0 deletions dist/commonjs/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ var AttributeMap = exports.AttributeMap = (_temp = _class = function () {
this.register('input', 'formnovalidate', 'formNoValidate');
this.register('input', 'formtarget', 'formTarget');

this.register('textarea', 'maxlength', 'maxLength');

this.register('td', 'rowspan', 'rowSpan');
this.register('td', 'colspan', 'colSpan');
this.register('th', 'rowspan', 'rowSpan');
Expand Down
2 changes: 2 additions & 0 deletions dist/es2015/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ export let AttributeMap = (_temp = _class = class AttributeMap {
this.register('input', 'formnovalidate', 'formNoValidate');
this.register('input', 'formtarget', 'formTarget');

this.register('textarea', 'maxlength', 'maxLength');

this.register('td', 'rowspan', 'rowSpan');
this.register('td', 'colspan', 'colSpan');
this.register('th', 'rowspan', 'rowSpan');
Expand Down
2 changes: 2 additions & 0 deletions dist/native-modules/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ export var AttributeMap = (_temp = _class = function () {
this.register('input', 'formnovalidate', 'formNoValidate');
this.register('input', 'formtarget', 'formTarget');

this.register('textarea', 'maxlength', 'maxLength');

this.register('td', 'rowspan', 'rowSpan');
this.register('td', 'colspan', 'colSpan');
this.register('th', 'rowspan', 'rowSpan');
Expand Down
2 changes: 2 additions & 0 deletions dist/system/aurelia-templating-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ System.register(['aurelia-logging', 'aurelia-binding', 'aurelia-templating'], fu
this.register('input', 'formnovalidate', 'formNoValidate');
this.register('input', 'formtarget', 'formTarget');

this.register('textarea', 'maxlength', 'maxLength');

this.register('td', 'rowspan', 'rowSpan');
this.register('td', 'colspan', 'colSpan');
this.register('th', 'rowspan', 'rowSpan');
Expand Down
331 changes: 1 addition & 330 deletions doc/api.json

Large diffs are not rendered by default.

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.0.0-beta.2.0.0",
"version": "1.0.0-beta.2.0.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 3016472

Please sign in to comment.