Skip to content

Commit bb3772e

Browse files
committed
Update changelog, bump versions
1 parent 0857ac6 commit bb3772e

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.10.11
2+
3+
* Allow incoming connections to "fan out" to multiple methods by supplying an array of method names (or pipelines).
4+
15
### 0.10.10
26

37
* Allow [`create` to use a `$ref`](docs/components.md#create) to a factory function, as well as args to create components.

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wire",
3-
"version": "0.10.10",
3+
"version": "0.10.11",
44
"main": "./wire.js",
55
"dependencies": {
66
"meld": "~1",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wire",
3-
"version": "0.10.10",
3+
"version": "0.10.11",
44
"description": "A light, fast, flexible Javascript IOC container.",
55
"keywords": [
66
"ioc",

wire.js

+2-2
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.10
14+
* @version 0.10.11
1515
*/
1616
(function(rootSpec, define){ 'use strict';
1717
define(function(require) {
1818

1919
var createContext, rootContext, rootOptions;
2020

21-
wire.version = '0.10.10';
21+
wire.version = '0.10.11';
2222

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

0 commit comments

Comments
 (0)