Skip to content

Commit e04c7dd

Browse files
committed
Fix changelog and version numbers
1 parent bfd5472 commit e04c7dd

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

CHANGES.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
### 0.10.9
2-
3-
* New `$imports` feature allows declaratively importing wire specs. [Check out the docs](docs/concepts.md#assembling-applications) for more info.
4-
51
### 0.10.8
62

7-
* No functional changes
8-
* Workaround gent+buster integration issue and update to gent 0.6.x. This only affects the ability to run unit tests.
9-
* 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.
3+
* New `$imports` feature allows declaratively importing wire specs. [Check out the docs](docs/concepts.md#assembling-applications) for more info.
4+
* Minor internal unit/integration test fixes:
5+
* Workaround gent+buster integration issue and update to gent 0.6.x. This only affects the ability to run unit tests.
6+
* 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.
107

118
### 0.10.7
129

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wire",
3-
"version": "0.10.9",
3+
"version": "0.10.8",
44
"main": "./wire.js",
55
"dependencies": {
66
"meld": "~1",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wire",
3-
"version": "0.10.9",
3+
"version": "0.10.8",
44
"description": "A light, fast, flexible Javascript IOC container.",
55
"keywords": [
66
"ioc",

wire.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
*
1212
* @author Brian Cavalier
1313
* @author John Hann
14-
* @version 0.10.9
14+
* @version 0.10.8
1515
*/
1616
(function(rootSpec, define){ 'use strict';
1717
define(function(require) {
1818

1919
var createContext, rootContext, rootOptions;
2020

21-
wire.version = '0.10.9';
21+
wire.version = '0.10.8';
2222

2323
createContext = require('./lib/context');
2424

0 commit comments

Comments
 (0)