diff --git a/README.md b/README.md index 9810741ec..9d1a9dd87 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ We're now on the Maven Central Repository. Add the following to your POM file to com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 ``` The driver can be downloaded from [Microsoft](https://aka.ms/downloadmssqljdbc). @@ -91,7 +91,7 @@ To get the latest version of the driver, add the following to your POM file: com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 ``` @@ -126,7 +126,7 @@ Projects that require either of the two features need to explicitly declare the com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 compile @@ -144,7 +144,7 @@ Projects that require either of the two features need to explicitly declare the com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 compile @@ -171,7 +171,7 @@ When setting 'useFmtOnly' property to 'true' for establishing a connection or cr com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 @@ -211,7 +211,7 @@ Preview releases happen approximately monthly between stable releases. This give You can see what is going into a future release by monitoring [Milestones](https://github.com/Microsoft/mssql-jdbc/milestones) in the repository. ### Version conventions -Starting with 6.0, stable versions have an even minor version. For example, 6.0, 6.2, 6.4, 7.0, 7.2, 7.4, 8.2, 8.4, 9.2, 9.4. Preview versions have an odd minor version. For example, 6.1, 6.3, 6.5, 7.1, 7.3, 8.1, 9.1 and so on. +Starting with 6.0, stable versions have an even minor version. For example, 6.0, 6.2, 6.4, 7.0, 7.2, 7.4, 8.2, 8.4, 9.2, 9.4. Preview versions have an odd minor version. For example, 6.1, 6.3, 6.5, 7.1, 7.3, 8.1, 9.1, 10.1, 11.1, and so on. ## Contributors Special thanks to everyone who has contributed to the project. diff --git a/build.gradle b/build.gradle index 4dd8723d9..e611b200e 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ apply plugin: 'java' -version = '10.3.0-SNAPSHOT' +version = '11.1.0-SNAPSHOT' def jreVersion = "" def testOutputDir = file("build/classes/java/test") def archivesBaseName = 'mssql-jdbc' diff --git a/mssql-jdbc_auth_LICENSE b/mssql-jdbc_auth_LICENSE index 310e0f561..ada85dc9a 100644 --- a/mssql-jdbc_auth_LICENSE +++ b/mssql-jdbc_auth_LICENSE @@ -1,5 +1,5 @@ MICROSOFT SOFTWARE LICENSE TERMS -MICROSOFT JDBC DRIVER 10.2 FOR SQL SERVER +MICROSOFT JDBC DRIVER 11.1 FOR SQL SERVER These license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft’s rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. diff --git a/pom.xml b/pom.xml index 290bcc5fb..d278f7eeb 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.microsoft.sqlserver mssql-jdbc - 10.3.0-SNAPSHOT + 11.1.0-SNAPSHOT jar Microsoft JDBC Driver for SQL Server diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java index 195e1b5cd..b1fa3d408 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java @@ -6,8 +6,8 @@ package com.microsoft.sqlserver.jdbc; final class SQLJdbcVersion { - static final int major = 10; - static final int minor = 3; + static final int major = 11; + static final int minor = 1; static final int patch = 0; static final int build = 0; /* diff --git a/src/samples/adaptive/pom.xml b/src/samples/adaptive/pom.xml index dc7781acb..9f5b10b18 100644 --- a/src/samples/adaptive/pom.xml +++ b/src/samples/adaptive/pom.xml @@ -15,7 +15,7 @@ com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 diff --git a/src/samples/alwaysencrypted/pom.xml b/src/samples/alwaysencrypted/pom.xml index dfd05e0f9..04f52c21f 100644 --- a/src/samples/alwaysencrypted/pom.xml +++ b/src/samples/alwaysencrypted/pom.xml @@ -15,7 +15,7 @@ com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 diff --git a/src/samples/azureactivedirectoryauthentication/pom.xml b/src/samples/azureactivedirectoryauthentication/pom.xml index 5321252a2..1ab688a13 100644 --- a/src/samples/azureactivedirectoryauthentication/pom.xml +++ b/src/samples/azureactivedirectoryauthentication/pom.xml @@ -14,7 +14,7 @@ com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 diff --git a/src/samples/connections/pom.xml b/src/samples/connections/pom.xml index 5dda73dd2..6b8247c0d 100644 --- a/src/samples/connections/pom.xml +++ b/src/samples/connections/pom.xml @@ -14,7 +14,7 @@ com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 diff --git a/src/samples/constrained/pom.xml b/src/samples/constrained/pom.xml index 848a39c53..7b8c36607 100644 --- a/src/samples/constrained/pom.xml +++ b/src/samples/constrained/pom.xml @@ -16,7 +16,7 @@ com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 diff --git a/src/samples/dataclassification/pom.xml b/src/samples/dataclassification/pom.xml index 0d03ce9cb..97aa0e2c5 100644 --- a/src/samples/dataclassification/pom.xml +++ b/src/samples/dataclassification/pom.xml @@ -16,7 +16,7 @@ com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 diff --git a/src/samples/datatypes/pom.xml b/src/samples/datatypes/pom.xml index 8eefb95db..4da1c8ad8 100644 --- a/src/samples/datatypes/pom.xml +++ b/src/samples/datatypes/pom.xml @@ -15,7 +15,7 @@ com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 diff --git a/src/samples/resultsets/pom.xml b/src/samples/resultsets/pom.xml index 8130e24eb..663c02d5f 100644 --- a/src/samples/resultsets/pom.xml +++ b/src/samples/resultsets/pom.xml @@ -14,7 +14,7 @@ com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17 diff --git a/src/samples/sparse/pom.xml b/src/samples/sparse/pom.xml index 1c6e9cc44..c7ee06ead 100644 --- a/src/samples/sparse/pom.xml +++ b/src/samples/sparse/pom.xml @@ -14,7 +14,7 @@ com.microsoft.sqlserver mssql-jdbc - 10.2.0.jre17 + 11.1.0.jre17