Skip to content

Commit

Permalink
Fix #155. Fix when.js semver in package.json. Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
briancavalier committed Mar 18, 2014
1 parent 6f789f5 commit 08db490
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 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.6

* Fix semver range for `when` dependency (#155). **Note** A clean install of wire < 0.10.6 may install when.js 3.0.0, with which wire is not yet compatible. Version 0.10.6 fixes the semver spec in wire's `package.json` so that a compatible version of when.js 2.x will be installed.

### 0.10.5

* Fix for form submit handling in `wire/on` on devices supporting touch events.
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.5",
"version": "0.10.6",
"main": "./wire.js",
"dependencies": {
"meld": "~1",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wire",
"version": "0.10.5",
"version": "0.10.6",
"description": "A light, fast, flexible Javascript IOC container.",
"keywords": [
"ioc",
Expand Down Expand Up @@ -39,7 +39,7 @@
],
"dependencies": {
"meld": "~1",
"when": ">=1.5.0 || ~2"
"when": ">=1.5.0 ~2"

This comment has been minimized.

Copy link
@unscriptable

unscriptable Mar 18, 2014

Member

doh! :)

},
"devDependencies": {
"buster": "~0.6",
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.5
* @version 0.10.6
*/
(function(rootSpec, define){ 'use strict';
define(function(require) {

var createContext, rootContext, rootOptions;

wire.version = '0.10.5';
wire.version = '0.10.6';

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

Expand Down

0 comments on commit 08db490

Please sign in to comment.