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

release notes for 1.1.1 #1469

Merged
merged 1 commit into from
Sep 13, 2024
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
12 changes: 6 additions & 6 deletions .github/workflows/publish-1.1-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,20 @@ jobs:
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
run: |-
sbt -Dpekko.genjavadoc.enabled=true -Dpekko.genlicensereport.enabled=true "set ThisBuild / version := \"1.1.0\"; docs/paradox; unidoc"
sbt -Dpekko.genjavadoc.enabled=true -Dpekko.genlicensereport.enabled=true "set ThisBuild / version := \"1.1.1\"; 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/1.1.0/
mkdir -p target/nightly-docs/docs/pekko/1.1.1/
mkdir -p target/nightly-docs/docs/pekko/1.1/
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/1.1.0/docs
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/1.1.1/docs
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/1.1/docs
rm -r docs/target/paradox/site/main/
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/1.1.0/api
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/1.1.1/api
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/1.1/api
rm -r target/scala-2.13/unidoc
cp -r target/javaunidoc target/nightly-docs/docs/pekko/1.1.0/japi
cp -r target/javaunidoc target/nightly-docs/docs/pekko/1.1.1/japi
cp -r target/javaunidoc target/nightly-docs/docs/pekko/1.1/japi
rm -r target/javaunidoc

Expand All @@ -78,7 +78,7 @@ jobs:
with:
upload: true
switches: --archive --compress --update --delete --progress --relative
local_path: target/nightly-docs/./docs/pekko/1.1.0 # The intermediate dot is to show `--relative` which paths to operate on
local_path: target/nightly-docs/./docs/pekko/1.1.1 # 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
8 changes: 8 additions & 0 deletions docs/src/main/paradox/release-notes/releases-1.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

Apache Pekko 1.1.x releases support Java 8 and above.

## 1.1.1

Pekko 1.1.1 is a bugfix release.

### Bug Fixes

* Cluster sharding delivers message to the wrong entity ([PR1464](https://github.com/apache/pekko/pull/1464))

## 1.1.0

Release notes for Apache Pekko 1.1.0. See [GitHub Milestone for 1.1.0-M1](https://github.com/apache/pekko/milestone/2?closed=1) and [GitHub Milestone for 1.1.0](https://github.com/apache/pekko/milestone/7?closed=1) for a fuller list of changes.
Expand Down
Loading