Skip to content

Commit

Permalink
Bump version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
briancavalier committed Aug 14, 2014
1 parent 7a67db7 commit 575cc82
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.10.9

* Allow arbitrarily deep dot traversal in `$ref`s.

### 0.10.8

* New `$imports` feature allows declaratively importing wire specs. [Check out the docs](docs/concepts.md#assembling-applications) for more info.
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.8",
"version": "0.10.9",
"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.8",
"version": "0.10.9",
"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.8
* @version 0.10.9
*/
(function(rootSpec, define){ 'use strict';
define(function(require) {

var createContext, rootContext, rootOptions;

wire.version = '0.10.8';
wire.version = '0.10.9';

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

Expand Down

0 comments on commit 575cc82

Please sign in to comment.