From 312fe0de8accf63750ee83995f0e7f0e530e2c8d Mon Sep 17 00:00:00 2001 From: Brian Cavalier Date: Sun, 28 Jul 2013 13:36:43 -0400 Subject: [PATCH 1/4] Update changelog --- CHANGES.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 658015c..1ffe4c3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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)) From 15600d69160cc66fc706b3039c7682f1c4f91f86 Mon Sep 17 00:00:00 2001 From: Brian Cavalier Date: Sun, 28 Jul 2013 13:41:15 -0400 Subject: [PATCH 2/4] Account for change in sizzle bower dist dir layout --- test/test-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-config.js b/test/test-config.js index eacdfa3..e1dc70e 100644 --- a/test/test-config.js +++ b/test/test-config.js @@ -96,7 +96,7 @@ addPackage({ name: 'meld', location: 'components/meld' }); addPackage({ name: 'when', location: 'components/when' }); addPackage({ name: 'poly', location: 'components/poly' }); - addPackage({ name: 'sizzle', location: 'components/sizzle' }); + addPackage({ name: 'sizzle', location: 'components/sizzle/dist' }); addPackage({ name: 'dojo', location: 'components/dojo', main: 'main' }); addPackage({ name: 'dijit', location: 'components/dijit' }); addPackage({ name: 'jquery', location: 'components/jquery', main: 'jquery' }); From 9232e9bcca8dbf027a6c6f2da362d0125de7718d Mon Sep 17 00:00:00 2001 From: Brian Cavalier Date: Sun, 28 Jul 2013 13:59:20 -0400 Subject: [PATCH 3/4] Fix copy/paste --- test/node/version-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/node/version-test.js b/test/node/version-test.js index 6bcc842..55a09c3 100644 --- a/test/node/version-test.js +++ b/test/node/version-test.js @@ -10,7 +10,7 @@ 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); }, @@ -18,4 +18,4 @@ assert.same(bowerJson.version, packageJson.version); } }); -}(require('buster'))); \ No newline at end of file +}(require('buster'))); From cdd64323f73dec25cfdc8efa02971fe4b81a141b Mon Sep 17 00:00:00 2001 From: Daniel Thompson Date: Thu, 22 Aug 2013 20:45:10 -0700 Subject: [PATCH 4/4] Fix small naming discrepency The code examples use 'app/HelloWire', while references in text (which were greater and seemed to be the intent) use 'app/HelloWired'. --- docs/concepts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts.md b/docs/concepts.md index 7771aa7..5961b46 100644 --- a/docs/concepts.md +++ b/docs/concepts.md @@ -89,7 +89,7 @@ define({ helloWired: { create: { - module: 'app/HelloWire', + module: 'app/HelloWired', args: { $ref: 'dom:first!.hello' } }, @@ -146,7 +146,7 @@ define({ helloWired: { create: { - module: 'app/HelloWire', + module: 'app/HelloWired', args: { $ref: 'dom:first!.hello' } },