Skip to content

Commit

Permalink
1.1.0 release (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Jan 20, 2025
1 parent fbec48a commit e0d4d55
Show file tree
Hide file tree
Showing 2 changed files with 7 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 @@ -46,17 +46,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 nightly directory structure
run: |-
mkdir -p target/nightly-docs/docs/pekko-persistence-cassandra/1.1.0-M1/
mkdir -p target/nightly-docs/docs/pekko-persistence-cassandra/1.1.0/
mkdir -p target/nightly-docs/docs/pekko-persistence-cassandra/1.1/
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-persistence-cassandra/1.1.0-M1/docs
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-persistence-cassandra/1.1.0/docs
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-persistence-cassandra/1.1/docs
rm -r docs/target/paradox/site/main/
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-persistence-cassandra/1.1.0-M1/api
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-persistence-cassandra/1.1.0/api
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-persistence-cassandra/1.1/api
rm -r target/scala-2.13/unidoc
Expand All @@ -65,7 +65,7 @@ jobs:
with:
upload: true
switches: --archive --compress --update --delete --progress --relative
local_path: target/nightly-docs/./docs/pekko-persistence-cassandra/1.1.0-M1 # The intermediate dot is to show `--relative` which paths to operate on
local_path: target/nightly-docs/./docs/pekko-persistence-cassandra/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
5 changes: 2 additions & 3 deletions docs/src/main/paradox/release-notes/releases-1.1.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Release Notes (1.1.x)

## 1.1.0-M1
Release notes for Apache Pekko Persistence Cassandra 1.1.0-M1. See [GitHub Milestone](https://github.com/apache/pekko-persistence-cassandra/milestone/1?closed=1) for a 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.
## 1.1.0
Release notes for Apache Pekko Persistence Cassandra 1.1.0. See [GitHub Milestone](https://github.com/apache/pekko-persistence-cassandra/milestone/1?closed=1) for a fuller list of changes.

### Bug Fixes
* When PreparedStatement initialization fails, the code used not to recover ([#103](https://github.com/apache/pekko-persistence-cassandra/issues/103))
Expand Down

0 comments on commit e0d4d55

Please sign in to comment.