summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/README.md4
-rw-r--r--js/package-lock.json2
-rw-r--r--js/package.json2
-rw-r--r--js/src/Ice/Initialize.js4
4 files changed, 6 insertions, 6 deletions
diff --git a/js/README.md b/js/README.md
index 38a8d3c981f..502d0c4628b 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.3.tgz`, which can be installed by running:
+This will generate the file `ice-3.7.4.tgz`, which can be installed by running:
```
-npm install ice-3.7.3.tgz
+npm install ice-3.7.4.tgz
```
To use Ice for JavaScript with a browser, copy the appropriate JavaScript
diff --git a/js/package-lock.json b/js/package-lock.json
index 31425e9b2ff..35253fa083f 100644
--- a/js/package-lock.json
+++ b/js/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "ice",
- "version": "3.7.3",
+ "version": "3.7.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/js/package.json b/js/package.json
index b75e7d493bf..5f8e1843276 100644
--- a/js/package.json
+++ b/js/package.json
@@ -1,6 +1,6 @@
{
"name": "ice",
- "version": "3.7.3",
+ "version": "3.7.4",
"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 609d59a3d3d..ff7dce1a5f8 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.3"; // "A.B.C", with A=major, B=minor, C=patch
+ return "3.7.4"; // "A.B.C", with A=major, B=minor, C=patch
};
Ice.intVersion = function()
{
- return 30703; // AABBCC, with AA=major, BB=minor, CC=patch
+ return 30704; // AABBCC, with AA=major, BB=minor, CC=patch
};
module.exports.Ice = Ice;