From c92e7dfc94fe2c040eea42e2bfc11415df67529c Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Fri, 13 Sep 2024 18:17:41 +0100 Subject: [PATCH 1/2] release 1.1.0 --- docs/src/main/paradox/release-notes/releases-1.1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/main/paradox/release-notes/releases-1.1.md b/docs/src/main/paradox/release-notes/releases-1.1.md index f7142430..e9f35036 100644 --- a/docs/src/main/paradox/release-notes/releases-1.1.md +++ b/docs/src/main/paradox/release-notes/releases-1.1.md @@ -1,9 +1,8 @@ # Release Notes (1.1.x) -## 1.1.0-M1 +## 1.1.0 -Release notes for Apache Pekko Persistence JDBC 1.1.0-M1. See [GitHub Milestone](https://github.com/apache/pekko-persistence-jdbc/milestone/1?closed=1) for fuller list of changes. -As with all milestone releases, this release is not recommended for production use - it is designed to allow users to try out the changes in a test environment. +Release notes for Apache Pekko Persistence JDBC 1.1.0. See [GitHub Milestone](https://github.com/apache/pekko-persistence-jdbc/milestone/1?closed=1) for a fuller list of changes. ### Bug Fixes @@ -26,6 +25,7 @@ As with all milestone releases, this release is not recommended for production u * slick 3.5.1 We upgraded the JDBC jars for the various databases that we test with. + * postgresql 42.7 * mysql 8.4 * sql server 12.6 From 381dcd90abeaa3b9194feaf2155fb9dbabadc4ae Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Fri, 13 Sep 2024 18:19:13 +0100 Subject: [PATCH 2/2] Update publish-1.1-docs.yml --- .github/workflows/publish-1.1-docs.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish-1.1-docs.yml b/.github/workflows/publish-1.1-docs.yml index e4f72c74..e5f62fbe 100644 --- a/.github/workflows/publish-1.1-docs.yml +++ b/.github/workflows/publish-1.1-docs.yml @@ -30,17 +30,17 @@ jobs: - name: Build Documentation run: |- - sbt "set ThisBuild / version := \"1.1.0-M1\"; docs/paradox; unidoc" + sbt "set ThisBuild / version := \"1.1.0\"; docs/paradox; unidoc" # Create directory structure upfront since rsync does not create intermediate directories otherwise - name: Create directory structure run: |- - mkdir -p target/nightly-docs/docs/pekko-persistence-jdbc/1.1.0-M1/ + mkdir -p target/nightly-docs/docs/pekko-persistence-jdbc/1.1.0/ mkdir -p target/nightly-docs/docs/pekko-persistence-jdbc/1.1/ - cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-persistence-jdbc/1.1.0-M1/docs + cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-persistence-jdbc/1.1.0/docs cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-persistence-jdbc/1.1/docs rm -r docs/target/paradox/site/main/ - cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-persistence-jdbc/1.1.0-M1/api + cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-persistence-jdbc/1.1.0/api cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-persistence-jdbc/1.1/api rm -r target/scala-2.13/unidoc @@ -49,7 +49,7 @@ jobs: with: upload: true switches: --archive --compress --update --delete --progress --relative - local_path: target/nightly-docs/./docs/pekko-persistence-jdbc/1.1.0-M1 # The intermediate dot is to show `--relative` which paths to operate on + local_path: target/nightly-docs/./docs/pekko-persistence-jdbc/1.1.0 # The intermediate dot is to show `--relative` which paths to operate on remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/pekko/ remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }} remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }}