From bb3772eab2809aaccac71025fef2b0b8cd2326ae Mon Sep 17 00:00:00 2001 From: Brian Cavalier Date: Wed, 29 Apr 2015 09:00:02 -0400 Subject: [PATCH] Update changelog, bump versions --- CHANGES.md | 4 ++++ bower.json | 2 +- package.json | 2 +- wire.js | 4 ++-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index ee84558..23ca0c3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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. diff --git a/bower.json b/bower.json index 169a9dd..e888f87 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "wire", - "version": "0.10.10", + "version": "0.10.11", "main": "./wire.js", "dependencies": { "meld": "~1", diff --git a/package.json b/package.json index 0bc4877..5db063b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wire", - "version": "0.10.10", + "version": "0.10.11", "description": "A light, fast, flexible Javascript IOC container.", "keywords": [ "ioc", diff --git a/wire.js b/wire.js index 1fdf1d7..f7e6ccd 100644 --- a/wire.js +++ b/wire.js @@ -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');