diff --git a/CHANGELOG.md b/CHANGELOG.md index 88914306e..7a2716da3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) +## [9.3.1] Preview Release +### Added +- Added replication connection option [#1566](https://github.com/microsoft/mssql-jdbc/pull/1566) + +### Fixed issues +- Fixed an issue where `trustStorePassword` is null when using applicationIntent=ReadOnly [#1565](https://github.com/microsoft/mssql-jdbc/pull/1565) +- Fixed an issue where redirected token contains named instance in servername [#1568](https://github.com/microsoft/mssql-jdbc/pull/1568) + ## [9.3.0] Preview Release ### Added - Added Open Connection Retry feature [#1535](https://github.com/microsoft/mssql-jdbc/pull/1535) diff --git a/README.md b/README.md index a8d9cf5ab..4d4d7af55 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ To get the latest preview version of the driver, add the following to your POM f com.microsoft.sqlserver mssql-jdbc - 9.3.0.jre15-preview + 9.3.1.jre15-preview ``` @@ -126,7 +126,7 @@ Projects that require either of the two features need to explicitly declare the com.microsoft.sqlserver mssql-jdbc - 9.3.0.jre15-preview + 9.3.1.jre15-preview compile @@ -144,7 +144,7 @@ Projects that require either of the two features need to explicitly declare the com.microsoft.sqlserver mssql-jdbc - 9.3.0.jre15-preview + 9.3.1.jre15-preview compile @@ -171,7 +171,7 @@ When setting 'useFmtOnly' property to 'true' for establishing a connection or cr com.microsoft.sqlserver mssql-jdbc - 9.3.0.jre15-preview + 9.3.1.jre15-preview diff --git a/build.gradle b/build.gradle index c3c0610a4..2354fefef 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ apply plugin: 'java' -version = '9.3.0' +version = '9.3.1' def jreVersion = "" def testOutputDir = file("build/classes/java/test") def archivesBaseName = 'mssql-jdbc' diff --git a/pom.xml b/pom.xml index 3f295393d..0215573f6 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.microsoft.sqlserver mssql-jdbc - 9.3.0 + 9.3.1 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 c82cd884a..1e506fe80 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java @@ -8,7 +8,7 @@ final class SQLJdbcVersion { static final int major = 9; static final int minor = 3; - static final int patch = 0; + static final int patch = 1; static final int build = 0; /* * Used to load mssql-jdbc_auth DLL.