Skip to content

Commit 575cc82

Browse files
committed
Bump version, update changelog
1 parent 7a67db7 commit 575cc82

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.10.9
2+
3+
* Allow arbitrarily deep dot traversal in `$ref`s.
4+
15
### 0.10.8
26

37
* New `$imports` feature allows declaratively importing wire specs. [Check out the docs](docs/concepts.md#assembling-applications) for more info.

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.8",
3+
"version": "0.10.9",
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.8",
3+
"version": "0.10.9",
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.8
14+
* @version 0.10.9
1515
*/
1616
(function(rootSpec, define){ 'use strict';
1717
define(function(require) {
1818

1919
var createContext, rootContext, rootOptions;
2020

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

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

0 commit comments

Comments
 (0)