Skip to content

Commit d5bc6cf

Browse files
committed
Update changelog and bump versions
1 parent 679e7f8 commit d5bc6cf

File tree

6 files changed

+31
-7
lines changed

6 files changed

+31
-7
lines changed

CHANGES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
### 0.10.3
2+
3+
* Experimental support for relative AMD plugin resource ids in wire specs. For example:
4+
5+
```js
6+
myTemplate: {
7+
// Find template.html relative to the current wire spec
8+
module: 'text!./template.html'
9+
}
10+
```
11+
112
### 0.10.2
213

314
* Experimental support for relative module ids in wire specs in all supported environments.

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,17 @@ and check out a few [example applications](docs/introduction.md#example-apps).
2323

2424
# What's new
2525

26+
### 0.10.3
27+
28+
* Experimental support for relative AMD plugin resource ids in wire specs. For example:
29+
30+
```js
31+
myTemplate: {
32+
// Find template.html relative to the current wire spec
33+
module: 'text!./template.html'
34+
}
35+
```
36+
2637
### 0.10.2
2738

2839
* Experimental support for relative module ids in wire specs in all supported environments.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wire",
3-
"version": "0.10.2",
3+
"version": "0.10.3",
44
"main": "./wire.js",
55
"dependencies": {
66
"meld": "~1",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wire",
3-
"version": "0.10.2",
3+
"version": "0.10.3",
44
"description": "A light, fast, flexible Javascript IOC container.",
55
"keywords": [
66
"ioc",

test/node/version-test.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
(function(buster) {
22
"use strict";
33

4-
var assert, refute, fail, bowerJson, packageJson;
4+
var assert, refute, fail, bowerJson, packageJson, wire;
55

66
assert = buster.assert;
77
refute = buster.refute;
88
fail = buster.assertions.fail;
99

10+
wire = require('../../wire');
1011
bowerJson = require('../../bower');
1112
packageJson = require('../../package');
1213

1314
buster.testCase('wire/version', {
14-
'should have the same name for package.json and component.json': function () {
15+
'should have the same name for package.json and bower.json': function () {
1516
assert.same(bowerJson.name, packageJson.name);
1617
},
17-
'should have the same version for package.json and component.json': function () {
18+
'should have the same version for wire, package.json, and bower.json': function () {
19+
assert.same(wire.version, packageJson.version);
1820
assert.same(bowerJson.version, packageJson.version);
1921
}
2022
});

wire.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
*
1414
* @author Brian Cavalier
1515
* @author John Hann
16-
* @version 0.10.1
16+
* @version 0.10.3
1717
*/
1818
(function(rootSpec, define){ 'use strict';
1919
define(function(require) {
2020

2121
var createContext, rootContext, rootOptions;
2222

23-
wire.version = '0.10.2';
23+
wire.version = '0.10.3';
2424

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

0 commit comments

Comments
 (0)