diff --git a/package.json b/package.json index a4884e51..82b9ef71 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "peeriod-core", - "version": "0.1.0", + "version": "0.1.1", "author": [ { "name": "Jonathan Pirnay", diff --git a/src/bin/core/plugin/pluginRunner/node_v0_10_30 b/src/bin/core/plugin/pluginRunner/node_v0_10_31 similarity index 60% rename from src/bin/core/plugin/pluginRunner/node_v0_10_30 rename to src/bin/core/plugin/pluginRunner/node_v0_10_31 index de2ad4d1..8af27808 100755 Binary files a/src/bin/core/plugin/pluginRunner/node_v0_10_30 and b/src/bin/core/plugin/pluginRunner/node_v0_10_31 differ diff --git a/src/config/mainConfig.json b/src/config/mainConfig.json index 931a1c4e..c2d3d191 100755 --- a/src/config/mainConfig.json +++ b/src/config/mainConfig.json @@ -97,7 +97,7 @@ "pluginConfigName" : "plugin.json", "pluginManagerStateConfig": "pluginManager.json", "pluginManagerMaxFileBufferInMegaBytes": 50, - "binaryPath" : "core/plugin/pluginRunner/node_v0_10_30", + "binaryPath" : "core/plugin/pluginRunner/node_v0_10_31", "timeoutInSeconds": 30, "pluginRunnerChunkSize": 512, "api" : { diff --git a/src/package.json b/src/package.json index 3246df13..24a70f1c 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "Peeriod", "description": "Bleeding Edge Anonymous File Sharing", - "version": "0.1.0", + "version": "0.1.1", "versionCheckUrl": "https://peeriodproject.github.io/peeriodVersionCheck.json", "main": "index.html", "no-edit-menu": true, @@ -14,7 +14,7 @@ "buffertools": "^2.1.2", "chokidar": "^0.8.2", "elastic.js": "^1.1.1", - "elasticsearch": "^2.4.0", + "elasticsearch": "^2.4.2", "fs-extra": "^0.10.0", "i18n": "^0.5.0", "json-stable-stringify": "^1.0.0", @@ -23,7 +23,7 @@ "node-lmdb": "^0.2.2", "node-static": "^0.7.3", "primus.io": "^3.1.1", - "sandcastle": "https://github.com/joernroeder/sandcastle/tarball/master", + "sandcastle": "https://github.com/joernroeder/sandcastle/tarball/memoryLeakFixing", "stack-trace": "0.0.9", "usage": "^0.4.12", "usb-detection": "^1.0.3", diff --git a/test/core/plugin/PluginRunnerFactory.js b/test/core/plugin/PluginRunnerFactory.js index f64e2fc8..1d5f6ca9 100644 --- a/test/core/plugin/PluginRunnerFactory.js +++ b/test/core/plugin/PluginRunnerFactory.js @@ -21,7 +21,7 @@ describe('CORE --> PLUGIN --> PluginRunnerFactory', function () { } else if (key === 'plugin.api.pluginApiName') { return 'PluginApi.js'; } else if (key === 'plugin.binaryPath') { - return './core/plugin/pluginRunner/node_v0_10_30'; + return './core/plugin/pluginRunner/node_v0_10_31'; } } }); diff --git a/test/core/plugin/PluginRunnerFactory.ts b/test/core/plugin/PluginRunnerFactory.ts index 10f2d5c0..36e1bd29 100644 --- a/test/core/plugin/PluginRunnerFactory.ts +++ b/test/core/plugin/PluginRunnerFactory.ts @@ -24,7 +24,7 @@ describe('CORE --> PLUGIN --> PluginRunnerFactory', function () { return 'PluginApi.js'; } else if (key === 'plugin.binaryPath') { - return './core/plugin/pluginRunner/node_v0_10_30'; + return './core/plugin/pluginRunner/node_v0_10_31'; } } });