diff --git a/CHANGES.md b/CHANGES.md index 9e7715a..e59a42b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,12 +1,9 @@ -### 0.10.9 - -* New `$imports` feature allows declaratively importing wire specs. [Check out the docs](docs/concepts.md#assembling-applications) for more info. - ### 0.10.8 -* No functional changes -* Workaround gent+buster integration issue and update to gent 0.6.x. This only affects the ability to run unit tests. -* Fix unhandled rejection in unit test--exposed by [when.js 3.2.x's new unhandled rejection reporting](https://github.com/cujojs/when/blob/master/docs/api.md#debugging-promises), win. +* New `$imports` feature allows declaratively importing wire specs. [Check out the docs](docs/concepts.md#assembling-applications) for more info. +* Minor internal unit/integration test fixes: + * Workaround gent+buster integration issue and update to gent 0.6.x. This only affects the ability to run unit tests. + * Fix unhandled rejection in unit test--exposed by [when.js 3.2.x's new unhandled rejection reporting](https://github.com/cujojs/when/blob/master/docs/api.md#debugging-promises), win. ### 0.10.7 diff --git a/bower.json b/bower.json index 5bb2a46..b05c40a 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "wire", - "version": "0.10.9", + "version": "0.10.8", "main": "./wire.js", "dependencies": { "meld": "~1", diff --git a/package.json b/package.json index d096fd5..32ac870 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wire", - "version": "0.10.9", + "version": "0.10.8", "description": "A light, fast, flexible Javascript IOC container.", "keywords": [ "ioc", diff --git a/wire.js b/wire.js index 070c21d..79baba7 100644 --- a/wire.js +++ b/wire.js @@ -11,14 +11,14 @@ * * @author Brian Cavalier * @author John Hann - * @version 0.10.9 + * @version 0.10.8 */ (function(rootSpec, define){ 'use strict'; define(function(require) { var createContext, rootContext, rootOptions; - wire.version = '0.10.9'; + wire.version = '0.10.8'; createContext = require('./lib/context');