summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2021-02-24 15:29:11 -0500
committerJoe George <joe@zeroc.com>2021-02-24 15:29:11 -0500
commitb3fa9be86576323ba4593e966a73556689689663 (patch)
tree3a04cc85f7442132ca6a4247cc8d0ed312f5b911 /js
parentFix python build deps on Windows (diff)
downloadice-b3fa9be86576323ba4593e966a73556689689663.tar.bz2
ice-b3fa9be86576323ba4593e966a73556689689663.tar.xz
ice-b3fa9be86576323ba4593e966a73556689689663.zip
Fix version string and objc build
Diffstat (limited to 'js')
-rw-r--r--js/package-lock.json10
-rw-r--r--js/package.json3
-rw-r--r--js/src/Ice/Initialize.js2
3 files changed, 4 insertions, 11 deletions
diff --git a/js/package-lock.json b/js/package-lock.json
index 8670085e879..b25bb573f85 100644
--- a/js/package-lock.json
+++ b/js/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "ice",
- "version": "3.7.5",
+ "version": "3.8.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "ice",
- "version": "3.7.5",
+ "version": "3.8.0",
"license": "GPL-2.0",
"devDependencies": {
"@babel/cli": "^7.12.10",
@@ -54,8 +54,6 @@
"integrity": "sha512-+y4ZnePpvWs1fc/LhZRTHkTesbXkyBYuOB+5CyodZqrEuETXi3zOVfpAQIdgC3lXbHLTDG9dQosxR9BhvLKDLQ==",
"dev": true,
"dependencies": {
- "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents",
- "chokidar": "^3.4.0",
"commander": "^4.0.1",
"convert-source-map": "^1.1.0",
"fs-readdir-recursive": "^1.1.0",
@@ -2261,7 +2259,6 @@
"anymatch": "^2.0.0",
"async-each": "^1.0.1",
"braces": "^2.3.2",
- "fsevents": "^1.2.7",
"glob-parent": "^3.1.0",
"inherits": "^2.0.3",
"is-binary-path": "^1.0.0",
@@ -6518,9 +6515,6 @@
"resolved": "https://registry.npmjs.org/rollup/-/rollup-2.36.1.tgz",
"integrity": "sha512-eAfqho8dyzuVvrGqpR0ITgEdq0zG2QJeWYh+HeuTbpcaXk8vNFc48B7bJa1xYosTCKx0CuW+447oQOW8HgBIZQ==",
"dev": true,
- "dependencies": {
- "fsevents": "~2.1.2"
- },
"bin": {
"rollup": "dist/bin/rollup"
},
diff --git a/js/package.json b/js/package.json
index f83077480c0..c5ee8af0495 100644
--- a/js/package.json
+++ b/js/package.json
@@ -56,6 +56,5 @@
"build": "gulp",
"dist": "gulp dist",
"clean": "gulp clean"
- },
- "dependencies": {}
+ }
}
diff --git a/js/src/Ice/Initialize.js b/js/src/Ice/Initialize.js
index 88877439b91..f422b38223a 100644
--- a/js/src/Ice/Initialize.js
+++ b/js/src/Ice/Initialize.js
@@ -103,7 +103,7 @@ Ice.currentEncoding = function()
Ice.stringVersion = function()
{
- return "3.8.0-alpha.0"; // "A.B.C", with A=major, B=minor, C=patch
+ return "3.8.0"; // "A.B.C", with A=major, B=minor, C=patch
};
Ice.intVersion = function()