Skip to content

Commit

Permalink
release 1.1.0 (#223)
Browse files Browse the repository at this point in the history
* release 1.1.0

* Update publish-1.1-docs.yml
  • Loading branch information
pjfanning authored Sep 17, 2024
1 parent 88acd7b commit 2c97844
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish-1.1-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand Down
6 changes: 3 additions & 3 deletions docs/src/main/paradox/release-notes/releases-1.1.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
Expand Down

0 comments on commit 2c97844

Please sign in to comment.