Skip to content

Commit

Permalink
chore(all): prepare release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jan 12, 2015
1 parent cd291b0 commit 993e9bd
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 10 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-binding",
"version": "0.2.1",
"version": "0.2.2",
"description": "A modern databinding library for JavaScript and HTML.",
"license": "MIT",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions dist/amd/ast.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ define(["exports", "./path-observer", "./composite-observer", "./expressions/ast
return { value: this.value };
};

LiteralArray.prototype.connect = function (binding, value) {
LiteralArray.prototype.connect = function (binding, scope) {
var _this10 = this;
var observer, childObservers = [], results = [], i, ii, exp, expInfo;

Expand All @@ -303,7 +303,7 @@ define(["exports", "./path-observer", "./composite-observer", "./expressions/ast
};
};

LiteralObject.prototype.connect = function (binding, value) {
LiteralObject.prototype.connect = function (binding, scope) {
var _this11 = this;
var observer,
childObservers = [],
Expand Down
4 changes: 2 additions & 2 deletions dist/commonjs/ast.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ function patchAST() {
return { value: this.value };
};

LiteralArray.prototype.connect = function (binding, value) {
LiteralArray.prototype.connect = function (binding, scope) {
var _this10 = this;
var observer, childObservers = [], results = [], i, ii, exp, expInfo;

Expand All @@ -302,7 +302,7 @@ function patchAST() {
};
};

LiteralObject.prototype.connect = function (binding, value) {
LiteralObject.prototype.connect = function (binding, scope) {
var _this11 = this;
var observer,
childObservers = [],
Expand Down
4 changes: 2 additions & 2 deletions dist/es6/ast.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export function patchAST(){
return { value:this.value }
}

LiteralArray.prototype.connect = function(binding, value) {
LiteralArray.prototype.connect = function(binding, scope) {
var observer,
childObservers = [],
results = [],
Expand Down Expand Up @@ -310,7 +310,7 @@ export function patchAST(){
};
}

LiteralObject.prototype.connect = function(binding, value){
LiteralObject.prototype.connect = function(binding, scope){
var observer,
childObservers = [],
instance = {},
Expand Down
4 changes: 2 additions & 2 deletions dist/system/ast.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ System.register(["./path-observer", "./composite-observer", "./expressions/ast"]
return { value: this.value };
};

LiteralArray.prototype.connect = function (binding, value) {
LiteralArray.prototype.connect = function (binding, scope) {
var _this10 = this;
var observer, childObservers = [], results = [], i, ii, exp, expInfo;

Expand All @@ -288,7 +288,7 @@ System.register(["./path-observer", "./composite-observer", "./expressions/ast"]
};
};

LiteralObject.prototype.connect = function (binding, value) {
LiteralObject.prototype.connect = function (binding, scope) {
var _this11 = this;
var observer,
childObservers = [],
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.2.2 (2015-01-12)


#### Bug Fixes

* **ast:** incorrect parameter reference during connection ([cd291b0c](http://github.com/aurelia/binding/commit/cd291b0c74d394ffd55ab4d8b3d7cfa0213aaa18))


### 0.2.1 (2015-01-12)


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-binding",
"version": "0.2.1",
"version": "0.2.2",
"description": "A modern databinding library for JavaScript and HTML.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 993e9bd

Please sign in to comment.