diff --git a/CHANGELOG.md b/CHANGELOG.md
index 31b8c00d4..e9a601e3f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,18 @@
# Changelog
+## [0.14.0](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.13.1...v0.14.0) (2022-12-16)
+
+
+### Features
+
+* support Connection API options in connection string ([#542](https://github.com/GoogleCloudPlatform/pgadapter/issues/542)) ([6247412](https://github.com/GoogleCloudPlatform/pgadapter/commit/6247412b4b0d578f638d763c6470c44db9ddf246))
+* support force_autocommit ([#541](https://github.com/GoogleCloudPlatform/pgadapter/issues/541)) ([52fba80](https://github.com/GoogleCloudPlatform/pgadapter/commit/52fba801f20c2bcdc1fa9e78e29bd3d25b18eeb0))
+
+
+### Documentation
+
+* added sample application model for Django ([#539](https://github.com/GoogleCloudPlatform/pgadapter/issues/539)) ([72b173a](https://github.com/GoogleCloudPlatform/pgadapter/commit/72b173af7130e24a6e3309535a117aaa90df17d6))
+
## [0.13.1](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.13.0...v0.13.1) (2022-12-09)
diff --git a/README.md b/README.md
index 62ad0773f..b15ba6344 100644
--- a/README.md
+++ b/README.md
@@ -63,9 +63,9 @@ Use the `-s` option to specify a different local port than the default 5432 if y
PostgreSQL running on your local system.
-You can also download a specific version of the jar. Example (replace `v0.13.1` with the version you want to download):
+You can also download a specific version of the jar. Example (replace `v0.14.0` with the version you want to download):
```shell
-VERSION=v0.13.1
+VERSION=v0.14.0
wget https://storage.googleapis.com/pgadapter-jar-releases/pgadapter-${VERSION}.tar.gz \
&& tar -xzvf pgadapter-${VERSION}.tar.gz
java -jar pgadapter.jar -p my-project -i my-instance -d my-database
@@ -100,7 +100,7 @@ This option is only available for Java/JVM-based applications.
com.google.cloud
google-cloud-spanner-pgadapter
- 0.13.1
+ 0.14.0
```
diff --git a/pom.xml b/pom.xml
index 343fe7a5b..442ca8523 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,7 +40,7 @@
4.0.0
google-cloud-spanner-pgadapter
- 0.13.2-SNAPSHOT
+ 0.14.0
Google Cloud Spanner PostgreSQL Adapter
jar
diff --git a/versions.txt b/versions.txt
index 680c543ab..ebf7e23e6 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version
-google-cloud-spanner-pgadapter:0.13.1:0.13.2-SNAPSHOT
+google-cloud-spanner-pgadapter:0.14.0:0.14.0