diff --git a/CHANGELOG.md b/CHANGELOG.md
index 816ae140a..d8affb207 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
+## [11.2.3] HotFix & Stable Release
+### Fixed issues
+- Fixed null SQL state and zero error code when database exception is thrown [2022](https://github.com/microsoft/mssql-jdbc/pull/2022)
+- Fixed incorrect update counts when timeout occurs in batch queries [2021](https://github.com/microsoft/mssql-jdbc/pull/2021)
+- Fixed incorrect token expiration date when using Azure Functions [2020](https://github.com/microsoft/mssql-jdbc/pull/2020)
+- Fixed connecting to the wrong SQLServer host [2019](https://github.com/microsoft/mssql-jdbc/pull/2019)
+
## [11.2.2] HotFix & Stable Release
### Fixed issues
- Fixed Idle Connection recovery so that unprocessedResponseCount isn't over decremented and clear cache on recovery [2004](https://github.com/microsoft/mssql-jdbc/pull/2004)
diff --git a/build.gradle b/build.gradle
index c60a3873e..1feabb838 100644
--- a/build.gradle
+++ b/build.gradle
@@ -11,7 +11,7 @@
apply plugin: 'java'
-version = '11.2.2'
+version = '11.2.3'
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 51ae072a0..1e0b8ed4b 100644
--- a/mssql-jdbc_auth_LICENSE
+++ b/mssql-jdbc_auth_LICENSE
@@ -1,5 +1,5 @@
MICROSOFT SOFTWARE LICENSE TERMS
-MICROSOFT JDBC DRIVER 11.2.2 FOR SQL SERVER
+MICROSOFT JDBC DRIVER 11.2.3 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 41ebfafc3..2bd681c37 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.microsoft.sqlserver
mssql-jdbc
- 11.2.2
+ 11.2.3
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 c7a78d684..4e517fe00 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 = 11;
static final int minor = 2;
- static final int patch = 2;
+ static final int patch = 3;
static final int build = 0;
/*
* Used to load mssql-jdbc_auth DLL.