summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2021-02-15 09:51:16 -0500
committerJoe George <joe@zeroc.com>2021-02-15 09:51:16 -0500
commit38cecfcf83521167b5db553da1c05612d88923cb (patch)
tree315efc136af6ba7550ea5894cdb185858aac3b8e /js
parentSupport for Ruby 3.0 (Fixes #1257) (#1258) (diff)
downloadice-38cecfcf83521167b5db553da1c05612d88923cb.tar.bz2
ice-38cecfcf83521167b5db553da1c05612d88923cb.tar.xz
ice-38cecfcf83521167b5db553da1c05612d88923cb.zip
Update version to v3.8.0
Diffstat (limited to 'js')
-rw-r--r--js/README.md4
-rw-r--r--js/package.json2
-rw-r--r--js/src/Ice/Initialize.js4
3 files changed, 5 insertions, 5 deletions
diff --git a/js/README.md b/js/README.md
index ead9fc164cf..dd456591fb1 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.5.tgz`, which can be installed by running:
+This will generate the file `ice-3.8a0.tgz`, which can be installed by running:
```
-npm install ice-3.7.5.tgz
+npm install ice-3.8a0.tgz
```
To use Ice for JavaScript with a browser, copy the appropriate JavaScript
diff --git a/js/package.json b/js/package.json
index 708d64c37d3..f83077480c0 100644
--- a/js/package.json
+++ b/js/package.json
@@ -1,6 +1,6 @@
{
"name": "ice",
- "version": "3.7.5",
+ "version": "3.8.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 658ec591113..88877439b91 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.5"; // "A.B.C", with A=major, B=minor, C=patch
+ return "3.8.0-alpha.0"; // "A.B.C", with A=major, B=minor, C=patch
};
Ice.intVersion = function()
{
- return 30705; // AABBCC, with AA=major, BB=minor, CC=patch
+ return 30800; // AABBCC, with AA=major, BB=minor, CC=patch
};
module.exports.Ice = Ice;