Skip to content

Commit

Permalink
Fix changelog and version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
briancavalier committed Jun 24, 2014
1 parent bfd5472 commit e04c7dd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
11 changes: 4 additions & 7 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wire",
"version": "0.10.9",
"version": "0.10.8",
"main": "./wire.js",
"dependencies": {
"meld": "~1",
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": "wire",
"version": "0.10.9",
"version": "0.10.8",
"description": "A light, fast, flexible Javascript IOC container.",
"keywords": [
"ioc",
Expand Down
4 changes: 2 additions & 2 deletions wire.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down

0 comments on commit e04c7dd

Please sign in to comment.