Skip to content

Commit

Permalink
Merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
briancavalier committed Nov 10, 2013
2 parents 950556a + 42b9cbb commit 66bf4e1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 0.10.2

* Experimental support for relative module ids in wire specs in all supported environments.
* Fix version mismatch in `bower.json`

### 0.10.1

* Fixes for using wire factory within a nested component. ([#123](https://github.com/cujojs/wire/issues/123), [#128](https://github.com/cujojs/wire/issues/128), thanks [@halfninety](https://github.com/halfninety))
Expand Down
4 changes: 2 additions & 2 deletions docs/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ define({
helloWired: {

create: {
module: 'app/HelloWire',
module: 'app/HelloWired',
args: { $ref: 'dom:first!.hello' }
},

Expand Down Expand Up @@ -146,7 +146,7 @@ define({
helloWired: {

create: {
module: 'app/HelloWire',
module: 'app/HelloWired',
args: { $ref: 'dom:first!.hello' }
},

Expand Down
4 changes: 2 additions & 2 deletions test/node/version-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
bowerJson = require('../../bower');
packageJson = require('../../package');

buster.testCase('rest/version', {
buster.testCase('wire/version', {
'should have the same name for package.json and component.json': function () {
assert.same(bowerJson.name, packageJson.name);
},
'should have the same version for package.json and component.json': function () {
assert.same(bowerJson.version, packageJson.version);
}
});
}(require('buster')));
}(require('buster')));

0 comments on commit 66bf4e1

Please sign in to comment.