summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-02-13 21:00:00 +0100
committerJose <jose@zeroc.com>2017-02-13 21:00:00 +0100
commitfecc2fea19d0ebfb8ed061ac5b569e3b09862c15 (patch)
tree8ce1167229f9cfaf9bad9512928dc04920f9d685
parentFixed (ICE-7276) - Comparing struct with Ice::Unset results in error in Ruby (diff)
downloadice-fecc2fea19d0ebfb8ed061ac5b569e3b09862c15.tar.bz2
ice-fecc2fea19d0ebfb8ed061ac5b569e3b09862c15.tar.xz
ice-fecc2fea19d0ebfb8ed061ac5b569e3b09862c15.zip
JS stringVersion/intVersion should include comment
-rw-r--r--js/src/Ice/Initialize.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/Ice/Initialize.js b/js/src/Ice/Initialize.js
index 4424289848a..a4d627c4510 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.7a4";
+ return "3.7a4"; // "A.B.C", with A=major, B=minor, C=patch
};
Ice.intVersion = function()
{
- return 30754;
+ return 30754; // AABBCC, with AA=major, BB=minor, CC=patch
};
module.exports.Ice = Ice;