diff --git a/CHANGELOG.md b/CHANGELOG.md
index 015ac821e..c35a1760e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
+## [6.3.1] Preview Release
+### Added
+- Added support for datetime/smallDatetime in TVP [#435](https://github.com/Microsoft/mssql-jdbc/pull/435)
+- Added more Junit tests for Always Encrypted [#432](https://github.com/Microsoft/mssql-jdbc/pull/432)
+
+### Fixed Issues
+- Fixed getString issue for uniqueIdentifier [#423](https://github.com/Microsoft/mssql-jdbc/pull/423)
+
+### Changed
+- Skip long running tests based on Tag [#425](https://github.com/Microsoft/mssql-jdbc/pull/425)
+- Removed volatile keyword [#409](https://github.com/Microsoft/mssql-jdbc/pull/409)
+
## [6.3.0] Preview Release
### Added
- Added support for sql_variant datatype [#387](https://github.com/Microsoft/mssql-jdbc/pull/387)
diff --git a/pom.xml b/pom.xml
index 08ba3d003..e0a7a73a0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.microsoft.sqlserver
mssql-jdbc
- 6.3.1-SNAPSHOT
+ 6.3.1
jar
diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java
index 94d392034..26b631b2d 100644
--- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java
+++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java
@@ -11,6 +11,6 @@
final class SQLJdbcVersion {
static final int major = 6;
static final int minor = 3;
- static final int patch = 0;
+ static final int patch = 1;
static final int build = 0;
}