diff --git a/HISTORY.md b/HISTORY.md index 15fe93cb..c487031b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -21,7 +21,9 @@ are locally determined to have expired: `tejMaxLedger`. + [Update jscl library](https://github.com/ripple/ripple-lib/commit/3204998fcb6f31d6c90532a737a4adb8a1e420f6) - Improved entropy by taking advantage of platform crypto - Use jscl's k256 curve instead of altering the c256 curve with k256 configuration - - **deprecated:** the c256 curve is linked to the k256 curve to provide backwards compatibility, this link will be removed in the future + - **deprecated:** the c256 curve is linked to the k256 curve to provide backwards compatibility, this link will be removed in the future + ++ [Fix empty queue check on reconnect](https://github.com/ripple/ripple-lib/commit/3c21994adcf72d1fbd87d453ceb917f9ad6df4ec) ##0.9.4 diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 9e09eac8..e1b23337 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,18 +1,21 @@ { "name": "ripple-lib", - "version": "0.10.0-rc2", + "version": "0.10.0", "dependencies": { "async": { "version": "0.8.0", - "from": "async@>=0.8.0 <0.9.0" + "from": "async@>=0.8.0 <0.9.0", + "resolved": "https://registry.npmjs.org/async/-/async-0.8.0.tgz" }, "extend": { "version": "1.2.1", - "from": "extend@>=1.2.1 <1.3.0" + "from": "extend@>=1.2.1 <1.3.0", + "resolved": "https://registry.npmjs.org/extend/-/extend-1.2.1.tgz" }, "lru-cache": { "version": "2.5.0", - "from": "lru-cache@>=2.5.0 <2.6.0" + "from": "lru-cache@>=2.5.0 <2.6.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.5.0.tgz" }, "ripple-wallet-generator": { "version": "1.0.1", @@ -22,6 +25,7 @@ "superagent": { "version": "0.18.2", "from": "superagent@>=0.18.0 <0.19.0", + "resolved": "https://registry.npmjs.org/superagent/-/superagent-0.18.2.tgz", "dependencies": { "qs": { "version": "0.6.6", @@ -56,6 +60,7 @@ "debug": { "version": "1.0.4", "from": "debug@>=1.0.1 <1.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-1.0.4.tgz", "dependencies": { "ms": { "version": "0.6.2", @@ -75,8 +80,9 @@ "resolved": "https://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz", "dependencies": { "combined-stream": { - "version": "0.0.5", + "version": "0.0.7", "from": "combined-stream@>=0.0.4 <0.1.0", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", "dependencies": { "delayed-stream": { "version": "0.0.5", @@ -87,17 +93,20 @@ }, "async": { "version": "0.9.0", - "from": "async@>=0.9.0 <0.10.0" + "from": "async@>=0.9.0 <0.10.0", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.0.tgz" } } }, "readable-stream": { "version": "1.0.27-1", "from": "readable-stream@1.0.27-1", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.27-1.tgz", "dependencies": { "core-util-is": { "version": "1.0.1", - "from": "core-util-is@>=1.0.0 <1.1.0" + "from": "core-util-is@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" }, "isarray": { "version": "0.0.1", @@ -106,11 +115,13 @@ }, "string_decoder": { "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0" + "from": "string_decoder@>=0.10.0 <0.11.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0" + "from": "inherits@>=2.0.1 <2.1.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } } @@ -119,10 +130,12 @@ "ws": { "version": "0.4.32", "from": "ws@>=0.4.31 <0.5.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-0.4.32.tgz", "dependencies": { "commander": { "version": "2.1.0", - "from": "commander@>=2.1.0 <2.2.0" + "from": "commander@>=2.1.0 <2.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.1.0.tgz" }, "nan": { "version": "1.0.0", diff --git a/package.json b/package.json index 03663ce3..11f96216 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ripple-lib", - "version": "0.10.0-rc2", + "version": "0.10.0", "description": "A JavaScript API for interacting with Ripple in Node.js and the browser", "files": [ "src/js/*",