Skip to content

Commit

Permalink
[TOOLS-4337] CUBRID Manager Release for 11.0 (#169)
Browse files Browse the repository at this point in the history
* [TOOLS-4332] add version string to support for connecting to CUBRID 10.2 (#166)

* [TOOLS-4337] add version to support connecting to CUBRID 11.0

* [TOOLS-4337] update version number (10.2.0 -> 11.0.0)

* [TOOLS-4338] add JDBC Driver files (11.0.0.0248-b53ae4a is included)
  • Loading branch information
win777c authored Jan 20, 2021
1 parent 9d7bb08 commit 9aa2e0c
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ public final class CompatibleUtil {
private static final String VER_9_3_0 = "9.3.0";
private static final String VER_10_0_0 = "10.0.0";
private static final String VER_10_1_0 = "10.1.0";
private static final String VER_10_2_0 = "10.2.0";
private static final String VER_11_0_0 = "11.0.0";

private CompatibleUtil() {
}
Expand Down Expand Up @@ -408,10 +410,15 @@ public static boolean isSupportCMServer(IServerSpec serverInfo, String clientVer
if (compareVersion(serverInfo.getServerVersionKey(), VER_10_0_0, 2) == 0) {
return true;
}

if (compareVersion(serverInfo.getServerVersionKey(), VER_10_1_0, 2) == 0) {
return true;
}
if (compareVersion(serverInfo.getServerVersionKey(), VER_10_2_0, 2) == 0) {
return true;
}
if (compareVersion(serverInfo.getServerVersionKey(), VER_11_0_0, 2) == 0) {
return true;
}

return false;
}
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions com.cubrid.cubridmanager.ui/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
productName=CUBRID Manager
releaseStr=10.2.0
releaseVersion=10.2.0
buildVersionId=10.2.0.0001
releaseStr=11.0.0
releaseVersion=11.0.0
buildVersionId=11.0.0.0001

0 comments on commit 9aa2e0c

Please sign in to comment.