diff --git a/CHANGELOG.md b/CHANGELOG.md index 869b9de15..d906646bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) +## [9.2.1] HotFix & Stable Release +### Fixed issues +- Fixed an issue with client secret being empty during ActiveDirectoryServicePrincipal authentication in Azure environment. [#1519](https://github.com/microsoft/mssql-jdbc/pull/1519) + ## [9.2.0] Stable Release ### Added - Added logic to handle multi-factor authentication timeouts during ActiveDirectoryInteractive authentication [#1488](https://github.com/microsoft/mssql-jdbc/pull/1488) diff --git a/README.md b/README.md index 73f21b934..a2d149adf 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ We're now on the Maven Central Repository. Add the following to your POM file to com.microsoft.sqlserver mssql-jdbc - 9.2.0.jre15 + 9.2.1.jre15 ``` The driver can be downloaded from the [Microsoft Download Center](https://go.microsoft.com/fwlink/?linkid=868287). @@ -92,7 +92,7 @@ To get the latest preview version of the driver, add the following to your POM f com.microsoft.sqlserver mssql-jdbc - 9.1.1.jre15-preview + 9.1.1.jre15 ``` @@ -127,7 +127,7 @@ Projects that require either of the two features need to explicitly declare the com.microsoft.sqlserver mssql-jdbc - 9.2.0.jre15-preview + 9.2.1.jre15 compile @@ -145,7 +145,7 @@ Projects that require either of the two features need to explicitly declare the com.microsoft.sqlserver mssql-jdbc - 9.2.0.jre15-preview + 9.2.1.jre15 compile @@ -172,7 +172,7 @@ When setting 'useFmtOnly' property to 'true' for establishing a connection or cr com.microsoft.sqlserver mssql-jdbc - 9.2.0.jre15-preview + 9.2.1.jre15 diff --git a/build.gradle b/build.gradle index 13a3b912c..64144aa1b 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ apply plugin: 'java' -version = '9.3.0-SNAPSHOT' +version = '9.2.1' def jreVersion = "" def testOutputDir = file("build/classes/java/test") def archivesBaseName = 'mssql-jdbc' @@ -75,7 +75,7 @@ if(hasProperty('buildProfile') && buildProfile == "jre8") { } } -jar.archiveFileName = "${archivesBaseName}-${version}.${jreVersion}-preview.jar" +jar.archiveFileName = "${archivesBaseName}-${version}.${jreVersion}.jar" jar { manifest { attributes 'Title': "Microsoft JDBC Driver ${version} for SQL Server", diff --git a/pom.xml b/pom.xml index ca080f09f..1b1dfe6e9 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.microsoft.sqlserver mssql-jdbc - 9.3.0-SNAPSHOT + 9.2.1 jar Microsoft JDBC Driver for SQL Server @@ -57,7 +57,7 @@ xSQLv12,xSQLv15,NTLM,MSI,reqExternalSetup,clientCertAuth,fedAuth - -preview + 4.2.1 diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java index c82cd884a..e844c86d5 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java @@ -7,13 +7,13 @@ final class SQLJdbcVersion { static final int major = 9; - static final int minor = 3; - static final int patch = 0; + static final int minor = 2; + static final int patch = 1; static final int build = 0; /* * Used to load mssql-jdbc_auth DLL. * 1. Set to "-preview" for preview release. * 2. Set to "" (empty String) for official release. */ - static final String releaseExt = "-preview"; + static final String releaseExt = ""; }