From 055270d210b06f3c88851bee029ff5a0538f1644 Mon Sep 17 00:00:00 2001 From: Mihai Dima Date: Fri, 12 Aug 2016 12:07:48 +0300 Subject: [PATCH] release preps --- .travis.yml | 2 -- CHANGES.md | 6 ++++++ package.json | 29 ++++++++++++++--------------- 3 files changed, 20 insertions(+), 17 deletions(-) diff --git a/.travis.yml b/.travis.yml index 97f2cd3..07feeb9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,10 +11,8 @@ node_js: - '4' before_script: - - if [[ $TRAVIS_NODE_VERSION == "6" ]]; then export LAB_FLAGS="--leaks"; else export LAB_FLAGS=""; fi - npm uninstall seneca - npm install seneca$SENECA_VER - - echo FLAGS:$LAB_FLAGS cache: directories: diff --git a/CHANGES.md b/CHANGES.md index 3f76abd..e1aa33f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +## 2.0.0 2016-08-12 + +* Fix tcp transport breaks seneca mesh +* Dropped support for Node 0.10, 0.12 +* Deps update + ## 1.3.0 * Documentation update diff --git a/package.json b/package.json index a6e33f3..678f0f2 100644 --- a/package.json +++ b/package.json @@ -16,39 +16,38 @@ "plugin" ], "scripts": { - "test": "lab -v -L -P test -t 81 -m 5000 $LAB_FLAGS", - "test:node6": "LAB_FLAGS='--leaks' && npm test", + "test": "lab -v -L -P test -t 81 -m 5000", "test-report": "lab -v -L -P test -t 81 -m 5000 -r html > test/report.html; open test/report.html", "bench": "node bench", "coveralls": "lab -s -P test -r lcov | coveralls", "annotate": "docco transport.js -o doc; open doc/transport.html" }, "dependencies": { - "eraro": "0.4.x", - "gex": "0.2.x", - "jsonic": "0.2.x", - "lodash": "4.14.x", - "lru-cache": "4.0.x", - "ndjson": "1.4.x", + "eraro": "0.4.1", + "gex": "0.2.2", + "jsonic": "0.2.2", + "lodash": "4.14.2", + "lru-cache": "4.0.1", + "ndjson": "1.4.3", "nid": "0.3.2", - "patrun": "0.5.x", - "qs": "6.2.x", - "reconnect-core": "1.3.x", - "wreck": "9.0.x" + "patrun": "0.5.0", + "qs": "6.2.1", + "reconnect-core": "1.3.0", + "wreck": "9.0.0" }, "devDependencies": { "async": "2.0.x", "bench": "0.3.x", - "code": "3.x.x", + "code": "3.0.x", "coveralls": "2.11.x", "docco": "0.7.x", "eslint-config-seneca": "3.x.x", "eslint-plugin-hapi": "4.x.x", "eslint-plugin-standard": "2.x.x", - "lab": "10.x.x", + "lab": "10.9.x", "pre-commit": "1.1.x", "seneca": "plugin", "seneca-entity": "1.2.x", - "seneca-transport-test": "0.2.x" + "seneca-transport-test": "0.2.0" } }