diff options
author | Joe George <joe@zeroc.com> | 2021-02-24 15:29:11 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2021-02-24 15:29:11 -0500 |
commit | b3fa9be86576323ba4593e966a73556689689663 (patch) | |
tree | 3a04cc85f7442132ca6a4247cc8d0ed312f5b911 /csharp/src | |
parent | Fix python build deps on Windows (diff) | |
download | ice-b3fa9be86576323ba4593e966a73556689689663.tar.bz2 ice-b3fa9be86576323ba4593e966a73556689689663.tar.xz ice-b3fa9be86576323ba4593e966a73556689689663.zip |
Fix version string and objc build
Diffstat (limited to 'csharp/src')
-rw-r--r-- | csharp/src/Ice/Util.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/Ice/Util.cs b/csharp/src/Ice/Util.cs index c0ff1afc65b..3e6314e1e35 100644 --- a/csharp/src/Ice/Util.cs +++ b/csharp/src/Ice/Util.cs @@ -515,7 +515,7 @@ namespace Ice /// <returns>The Ice version.</returns> public static string stringVersion() { - 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 } /// <summary> |