diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/BuildInstructions.md | 4 | ||||
-rw-r--r-- | js/package.json | 2 | ||||
-rw-r--r-- | js/src/Ice/Initialize.js | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/js/BuildInstructions.md b/js/BuildInstructions.md index c67c02f4133..39459cbf655 100644 --- a/js/BuildInstructions.md +++ b/js/BuildInstructions.md @@ -128,9 +128,9 @@ following command: > npm pack -This will generate the file `ice-3.7b0.tgz`, which can be installed by running: +This will generate the file `ice-3.7.0.tgz`, which can be installed by running: - > npm install <path_to_file>/ice-3.7b0.tgz + > npm install <path_to_file>/ice-3.7.0.tgz To use Ice for JavaScript with a browser, copy the appropriate JavaScript library files located in the `lib` directory to your web server. diff --git a/js/package.json b/js/package.json index 02f5b6394ab..b30f43d4c18 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "ice", - "version": "3.7.0-beta0", + "version": "3.7.0", "description": "Ice for JavaScript runtime", "author": "Zeroc, Inc.", "homepage": "https://zeroc.com", diff --git a/js/src/Ice/Initialize.js b/js/src/Ice/Initialize.js index 5234ec257b2..1785c5d9ff8 100644 --- a/js/src/Ice/Initialize.js +++ b/js/src/Ice/Initialize.js @@ -105,12 +105,12 @@ Ice.currentEncoding = function() Ice.stringVersion = function() { - return "3.7b0"; // "A.B.C", with A=major, B=minor, C=patch + return "3.7.0"; // "A.B.C", with A=major, B=minor, C=patch }; Ice.intVersion = function() { - return 30760; // AABBCC, with AA=major, BB=minor, CC=patch + return 30700; // AABBCC, with AA=major, BB=minor, CC=patch }; module.exports.Ice = Ice; |