Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(postgresql-dialect): release 0.23.1 #982

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.23.1](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.23.0...v0.23.1) (2023-09-07)


### Documentation

* include dependencies in sample README ([#1001](https://github.com/GoogleCloudPlatform/pgadapter/issues/1001)) ([d2c5529](https://github.com/GoogleCloudPlatform/pgadapter/commit/d2c55299ff2e5a5d7a57a3266776304129d14109))
* modify pgx sample to use Go PGAdapter wrapper ([#927](https://github.com/GoogleCloudPlatform/pgadapter/issues/927)) ([3514bbc](https://github.com/GoogleCloudPlatform/pgadapter/commit/3514bbc7d618e8c5112e1af7a2288f79a667c0c5))
* use Options Builder for samples ([#918](https://github.com/GoogleCloudPlatform/pgadapter/issues/918)) ([cc982c6](https://github.com/GoogleCloudPlatform/pgadapter/commit/cc982c62453a3a84b966e8b8f8064dbd81f7c73a))


### Dependencies

* bump GitHub Actions gcloud ([#1028](https://github.com/GoogleCloudPlatform/pgadapter/issues/1028)) ([0215ea3](https://github.com/GoogleCloudPlatform/pgadapter/commit/0215ea35854030dfe315fe303eb5d6ab3d47f92d))
* bump Spring Boot to 3.1.3 for Cloud Run sample ([#1023](https://github.com/GoogleCloudPlatform/pgadapter/issues/1023)) ([bc2ed9e](https://github.com/GoogleCloudPlatform/pgadapter/commit/bc2ed9ee911d2616ad6be8b62a14d4f8deb09099))
* import Spanner pom instead of individual deps ([#986](https://github.com/GoogleCloudPlatform/pgadapter/issues/986)) ([be3d7fd](https://github.com/GoogleCloudPlatform/pgadapter/commit/be3d7fd4b052052009182a83af1d6fd0f6d9a3c1))

## [0.23.0](https://github.com/GoogleCloudPlatform/pgadapter/compare/v0.22.1...v0.23.0) (2023-08-10)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ Use the `-s` option to specify a different local port than the default 5432 if y
PostgreSQL running on your local system.

<!--- {x-version-update-start:google-cloud-spanner-pgadapter:released} -->
You can also download a specific version of the jar. Example (replace `v0.23.0` with the version you want to download):
You can also download a specific version of the jar. Example (replace `v0.23.1` with the version you want to download):
```shell
VERSION=v0.23.0
VERSION=v0.23.1
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
Expand Down Expand Up @@ -142,7 +142,7 @@ This option is only available for Java/JVM-based applications.
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-spanner-pgadapter</artifactId>
<version>0.23.0</version>
<version>0.23.1</version>
</dependency>
<!-- [END pgadapter_dependency] -->
```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

<modelVersion>4.0.0</modelVersion>
<artifactId>google-cloud-spanner-pgadapter</artifactId>
<version>0.23.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-spanner-pgadapter:current} -->
<version>0.23.1</version><!-- {x-version-update:google-cloud-spanner-pgadapter:current} -->
<name>Google Cloud Spanner PostgreSQL Adapter</name>
<packaging>jar</packaging>
<description>
Expand Down
4 changes: 2 additions & 2 deletions samples/java/jdbc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ The sample application adds the following dependencies:
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.6.0</version>
<version>0.23.1</version>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-spanner-pgadapter</artifactId>
<version>0.23.0</version>
<version>0.23.1</version>
</dependency>
<!-- [END pgadapter_and_jdbc_dependency] -->
```
Expand Down
2 changes: 1 addition & 1 deletion versions.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version

google-cloud-spanner-pgadapter:0.23.0:0.23.1-SNAPSHOT
google-cloud-spanner-pgadapter:0.23.1:0.23.1
Loading