Skip to content

Commit d221554

Browse files
committed
Prepare for 0.12.0 release.
- Update npm dependencies, including faye-websocket (#78) - Catch JSON parsing exceptions (#77) - Fix adding changed handler on observer creator (#72)
1 parent 6a37c0e commit d221554

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
0.12.0 — 2016-03-31
2+
3+
- Update npm dependencies, including faye-websocket (#78)
4+
- Catch JSON parsing exceptions (#77)
5+
- Fix adding changed handler on observer creator (#72)
6+
17
0.11.0 — 2015-03-23
28

39
- Allow passing url to websocket connection string (#52)

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2013-2014 by Tom Coleman
1+
Copyright (C) 2013-2016 by Tom Coleman
22

33
node-ddp-client is free software released under the MIT/X11 license:
44

@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21-
THE SOFTWARE.
21+
THE SOFTWARE.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ddp",
3-
"version": "0.11.0",
3+
"version": "0.12.0",
44
"description": "Node.js module to connect to servers using DDP protocol.",
55
"author": "Tom Coleman <[email protected]> (http://tom.thesnail.org)",
66
"contributors": [
@@ -12,7 +12,7 @@
1212
"Vaughn Iverson <[email protected]>",
1313
"Rony Kubat <[email protected]>"
1414
],
15-
"license": "MIT/X11",
15+
"license": "MIT",
1616
"main": "lib/ddp-client",
1717
"keywords": [
1818
"ddp",
@@ -27,12 +27,12 @@
2727
"ddp-underscore-patched": "0.8.1-2",
2828
"ddp-ejson": "0.8.1-3",
2929
"faye-websocket": "0.11.0",
30-
"request": "2.53.x"
30+
"request": "2.69.x"
3131
},
3232
"devDependencies": {
33-
"mocha": "~2.2.1",
34-
"sinon": "~1.14.1",
35-
"rewire": "~2.3.1"
33+
"mocha": "~2.4.5",
34+
"sinon": "~1.17.3",
35+
"rewire": "~2.5.1"
3636
},
3737
"scripts": {
3838
"test": "./node_modules/mocha/bin/mocha test"

0 commit comments

Comments
 (0)