diff options
author | Jose <jose@zeroc.com> | 2020-11-30 18:42:15 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2020-11-30 18:42:15 +0100 |
commit | 0c80e767f0650386d26f16b044c55d76c8eab894 (patch) | |
tree | 3445d6355e2c2733f0fdac9309eb62c1efdbfabf /js | |
parent | Swift build fixes for Xcode 12 and macOS 11 (diff) | |
download | ice-0c80e767f0650386d26f16b044c55d76c8eab894.tar.bz2 ice-0c80e767f0650386d26f16b044c55d76c8eab894.tar.xz ice-0c80e767f0650386d26f16b044c55d76c8eab894.zip |
Update version to 3.7.5
Diffstat (limited to 'js')
-rw-r--r-- | js/README.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/README.md b/js/README.md index 502d0c4628b..ead9fc164cf 100644 --- a/js/README.md +++ b/js/README.md @@ -194,9 +194,9 @@ following command: npm pack ``` -This will generate the file `ice-3.7.4.tgz`, which can be installed by running: +This will generate the file `ice-3.7.5.tgz`, which can be installed by running: ``` -npm install ice-3.7.4.tgz +npm install ice-3.7.5.tgz ``` To use Ice for JavaScript with a browser, copy the appropriate JavaScript diff --git a/js/package.json b/js/package.json index b347cc0136c..79df4a95204 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "ice", - "version": "3.7.4", + "version": "3.7.5", "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 ff7dce1a5f8..658ec591113 100644 --- a/js/src/Ice/Initialize.js +++ b/js/src/Ice/Initialize.js @@ -103,12 +103,12 @@ Ice.currentEncoding = function() Ice.stringVersion = function() { - return "3.7.4"; // "A.B.C", with A=major, B=minor, C=patch + return "3.7.5"; // "A.B.C", with A=major, B=minor, C=patch }; Ice.intVersion = function() { - return 30704; // AABBCC, with AA=major, BB=minor, CC=patch + return 30705; // AABBCC, with AA=major, BB=minor, CC=patch }; module.exports.Ice = Ice; |