diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ae83875c6..72e46dab6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.32.0](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.31.1...v0.32.0) (2024-03-16) + + +### Features + +* support float4 data type ([#1481](https://github.com/GoogleCloudPlatform/pgadapter/issues/1481)) ([c2554fc](https://github.com/GoogleCloudPlatform/pgadapter/commit/c2554fc380f34e8dfffaea988df43d1c2d9580bb)) + + +### Documentation + +* document how to get 32-bit integers in node-postgres ([#1512](https://github.com/GoogleCloudPlatform/pgadapter/issues/1512)) ([d49e678](https://github.com/GoogleCloudPlatform/pgadapter/commit/d49e6781fce027436e08d81219c5d00c407b90a2)) +* sleep 2s to ensure PGAdapter has started ([#1533](https://github.com/GoogleCloudPlatform/pgadapter/issues/1533)) ([8b1475c](https://github.com/GoogleCloudPlatform/pgadapter/commit/8b1475c63321fbf3d2cc2f0a89ac207be7bbcdd1)) + ## [0.31.1](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.31.0...v0.31.1) (2024-03-07) diff --git a/README.md b/README.md index 40bb35b36e..aa5c66cdd4 100644 --- a/README.md +++ b/README.md @@ -111,9 +111,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.31.1` with the version you want to download): +You can also download a specific version of the jar. Example (replace `v0.32.0` with the version you want to download): ```shell -VERSION=v0.31.1 +VERSION=v0.32.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 @@ -148,7 +148,7 @@ This option is only available for Java/JVM-based applications. com.google.cloud google-cloud-spanner-pgadapter - 0.31.1 + 0.32.0 ``` diff --git a/benchmarks/latency-comparison/java/pom.xml b/benchmarks/latency-comparison/java/pom.xml index 886ac5a4ac..3a212d15f4 100644 --- a/benchmarks/latency-comparison/java/pom.xml +++ b/benchmarks/latency-comparison/java/pom.xml @@ -75,7 +75,7 @@ org.postgresql postgresql - 42.7.3 + 42.7.2 compile diff --git a/pom.xml b/pom.xml index f9f19fddff..26ea2e1650 100644 --- a/pom.xml +++ b/pom.xml @@ -42,7 +42,7 @@ 4.0.0 google-cloud-spanner-pgadapter - 0.31.2-SNAPSHOT + 0.32.0 Google Cloud Spanner PostgreSQL Adapter jar diff --git a/samples/java/jdbc/README.md b/samples/java/jdbc/README.md index 729e0a86dc..b32208a50f 100644 --- a/samples/java/jdbc/README.md +++ b/samples/java/jdbc/README.md @@ -14,12 +14,12 @@ The sample application adds the following dependencies: org.postgresql postgresql - 42.7.2 + 0.32.0 com.google.cloud google-cloud-spanner-pgadapter - 0.23.1 + 0.32.0 ``` diff --git a/versions.txt b/versions.txt index 962bba7c74..33a9e5c2b7 100644 --- a/versions.txt +++ b/versions.txt @@ -1,4 +1,4 @@ # Format: # module:released-version:current-version -google-cloud-spanner-pgadapter:0.31.1:0.31.2-SNAPSHOT +google-cloud-spanner-pgadapter:0.32.0:0.32.0