diff --git a/.github/workflows/publish-2.0-docs.yml b/.github/workflows/publish-2.0-docs.yml index 8f381c978c4..fdb83ea666e 100644 --- a/.github/workflows/publish-2.0-docs.yml +++ b/.github/workflows/publish-2.0-docs.yml @@ -60,20 +60,20 @@ jobs: env: DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} run: |- - sbt -Dpekko.genjavadoc.enabled=true "set ThisBuild / version := \"2.0.0-M2\"; docs/paradox; unidoc" + sbt -Dpekko.genjavadoc.enabled=true "set ThisBuild / version := \"2.0.0-M3\"; 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/2.0.0-M2/ + mkdir -p target/nightly-docs/docs/pekko/2.0.0-M3/ mkdir -p target/nightly-docs/docs/pekko/2.0/ - cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/2.0.0-M2/docs + cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/2.0.0-M3/docs cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/2.0/docs rm -r docs/target/paradox/site/main/ - cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/2.0.0-M2/api + cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/2.0.0-M3/api cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/2.0/api rm -r target/scala-2.13/unidoc - cp -r target/javaunidoc target/nightly-docs/docs/pekko/2.0.0-M2/japi + cp -r target/javaunidoc target/nightly-docs/docs/pekko/2.0.0-M3/japi cp -r target/javaunidoc target/nightly-docs/docs/pekko/2.0/japi rm -r target/javaunidoc @@ -82,7 +82,7 @@ jobs: with: upload: true switches: --archive --compress --update --delete --progress --relative - local_path: target/nightly-docs/./docs/pekko/2.0.0-M2 # The intermediate dot is to show `--relative` which paths to operate on + local_path: target/nightly-docs/./docs/pekko/2.0.0-M3 # 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 }} diff --git a/docs/src/main/paradox/release-notes/releases-2.0.md b/docs/src/main/paradox/release-notes/releases-2.0.md index 84ab1f3455f..2b52c42a297 100644 --- a/docs/src/main/paradox/release-notes/releases-2.0.md +++ b/docs/src/main/paradox/release-notes/releases-2.0.md @@ -2,6 +2,19 @@ Apache Pekko 2.0.x releases support Java 17 and above. +## 2.0.0-M3 + +This is milestone release and is aimed at testing this new major version +by early adopters. This is experimental. This release should not be used in production. + +We recommend that anyone using previous 2.0.0 milestones upgrade to this release due to some important bug fixes. + +See the [GitHub Milestone for 2.0.0-M3](https://github.com/apache/pekko/milestone/28?closed=1) for a fuller list of changes. + +### Bug fix + +* The existing 2.0.0 milestones have issues related to high concurrency introduced when we switched away from sun.misc.Unsafe to using Var Handles. + ## 2.0.0-M2 This is milestone release and is aimed at testing this new major version