Skip to content

Commit

Permalink
Updated wire.js version and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
briancavalier committed Dec 14, 2011
1 parent b6ce78b commit fa09b86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "wire",
"version": "0.7.3",
"version": "0.7.4",
"description": "A light, fast, flexible Javascript IOC container.",
"keywords": ["ioc"],
"licenses": [
Expand Down Expand Up @@ -33,13 +33,13 @@
}
],
"dependencies": {
"aop": "0.2.0",
"when": "0.9.4",
"aop": "0.5.0",
"when": "0.10.2",
"sizzle": "1.5.x"
},
"mappings": {
"aop": "https://github.com/briancavalier/aop.js/zipball/master",
"when": "https://github.com/briancavalier/when.js/zipball/0.9.4",
"aop": "https://github.com/briancavalier/aop.js/zipball/0.5.0",
"when": "https://github.com/briancavalier/when.js/zipball/0.10.1",
"sizzle": "https://github.com/kriszyp/sizzle/zipball/1.5.2"
},
"main": "./wire",
Expand Down
2 changes: 1 addition & 1 deletion wire.js
Expand Up @@ -16,7 +16,7 @@ define(['require', 'when', 'wire/base'], function(require, when, basePlugin) {
var VERSION, tos, arrayProto, apIndexOf, apSlice, rootSpec, rootContext, delegate, emptyObject,
defer, chain, whenAll, isArray, indexOf, lifecycleSteps, undef;

wire.version = VERSION = "0.7.3";
wire.version = VERSION = "0.7.4";

rootSpec = global['wire'] || {};
lifecycleSteps = ['create', 'configure', 'initialize', 'ready'];
Expand Down

0 comments on commit fa09b86

Please sign in to comment.