Skip to content

Commit

Permalink
Update changelog, bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
briancavalier committed Apr 29, 2015
1 parent 0857ac6 commit bb3772e
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.11

* Allow incoming connections to "fan out" to multiple methods by supplying an array of method names (or pipelines).

### 0.10.10

* Allow [`create` to use a `$ref`](docs/components.md#create) to a factory function, as well as args to create components.
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.10",
"version": "0.10.11",
"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.10",
"version": "0.10.11",
"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.10
* @version 0.10.11
*/
(function(rootSpec, define){ 'use strict';
define(function(require) {

var createContext, rootContext, rootOptions;

wire.version = '0.10.10';
wire.version = '0.10.11';

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

Expand Down

0 comments on commit bb3772e

Please sign in to comment.