diff --git a/CHANGELOG.md b/CHANGELOG.md index cf059e87..87bada5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## v1.3.0 (9/22/2014) + +###features + +* Auto-eval function attributes https://github.com/flightjs/flight/pull/306 +* Enforce JSCS style checker compliance https://github.com/flightjs/flight/pull/291 +* Use webpack to build the standalone library https://github.com/flightjs/flight/pull/272 +* Expose registry on DEBUG global https://github.com/flightjs/flight/pull/298 +* Allow for optional undefined attributes https://github.com/flightjs/flight/pull/310 +* getEnumerableProperty util https://github.com/flightjs/flight/pull/311 + +###bug fixes and tweaks + +* Array optimization in hot code https://github.com/flightjs/flight/pull/276 +* New attributes override works in debug mode https://github.com/flightjs/flight/pull/279 +* Per instance callback unbinding https://github.com/flightjs/flight/pull/282 +* Move index.js to project root https://github.com/flightjs/flight/pull/294 +* Avoid unnecessary clearTimeouts in debounce() https://github.com/flightjs/flight/pull/304 + ## v1.2.0 (6/20/2014) ###features @@ -5,19 +24,19 @@ * Allows override by other mixins * Ignores attributes passed by attachedTo unless declared in component * Requires null attributes to be overriden -* Old `this.defaultAttrs` API still works but deprecated -https://github.com/flightjs/flight/pull/150 +* Old `this.defaultAttrs` API still works but deprecated +https://github.com/flightjs/flight/pull/150 https://github.com/flightjs/flight/pull/270 - + ###bug fixes and tweaks -* Optimize Arguments to Array util +* Optimize Arguments to Array util https://github.com/flightjs/flight/pull/268 -* Add Component.mixin docs +* Add Component.mixin docs https://github.com/flightjs/flight/pull/246 -* Fix attribute behavior when using Component.mixin -https://github.com/flightjs/flight/pull/253 +* Fix attribute behavior when using Component.mixin +https://github.com/flightjs/flight/pull/253 https://github.com/flightjs/flight/pull/270 diff --git a/bower.json b/bower.json index 09396835..418d3773 100644 --- a/bower.json +++ b/bower.json @@ -2,7 +2,7 @@ "name": "flight", "description": "Clientside component infrastructure", "main": "index.js", - "version": "1.2.0", + "version": "1.3.0", "ignore": [ ".*", "doc", diff --git a/package.json b/package.json index cf066e5e..a55fde12 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flight", - "version": "1.2.0", + "version": "1.3.0", "devDependencies": { "jscs" : "^1.5.8", "karma": "~0.12.6",