Skip to content

Commit 8c5d40d

Browse files
authored
release notes for 2.0.0-M2 (#2964)
* release notes for 2.0.0-M2 * Update releases-2.0.md
1 parent 61b1e4c commit 8c5d40d

2 files changed

Lines changed: 20 additions & 6 deletions

File tree

.github/workflows/publish-2.0-docs.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,20 @@ jobs:
6060
env:
6161
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
6262
run: |-
63-
sbt -Dpekko.genjavadoc.enabled=true "set ThisBuild / version := \"2.0.0-M1\"; docs/paradox; unidoc"
63+
sbt -Dpekko.genjavadoc.enabled=true "set ThisBuild / version := \"2.0.0-M2\"; docs/paradox; unidoc"
6464
6565
# Create directory structure upfront since rsync does not create intermediate directories otherwise
6666
- name: Create directory structure
6767
run: |-
68-
mkdir -p target/nightly-docs/docs/pekko/2.0.0-M1/
68+
mkdir -p target/nightly-docs/docs/pekko/2.0.0-M2/
6969
mkdir -p target/nightly-docs/docs/pekko/2.0/
70-
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/2.0.0-M1/docs
70+
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/2.0.0-M2/docs
7171
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/2.0/docs
7272
rm -r docs/target/paradox/site/main/
73-
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/2.0.0-M1/api
73+
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/2.0.0-M2/api
7474
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/2.0/api
7575
rm -r target/scala-2.13/unidoc
76-
cp -r target/javaunidoc target/nightly-docs/docs/pekko/2.0.0-M1/japi
76+
cp -r target/javaunidoc target/nightly-docs/docs/pekko/2.0.0-M2/japi
7777
cp -r target/javaunidoc target/nightly-docs/docs/pekko/2.0/japi
7878
rm -r target/javaunidoc
7979
@@ -82,7 +82,7 @@ jobs:
8282
with:
8383
upload: true
8484
switches: --archive --compress --update --delete --progress --relative
85-
local_path: target/nightly-docs/./docs/pekko/2.0.0-M1 # The intermediate dot is to show `--relative` which paths to operate on
85+
local_path: target/nightly-docs/./docs/pekko/2.0.0-M2 # The intermediate dot is to show `--relative` which paths to operate on
8686
remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/pekko
8787
remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }}
8888
remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }}

docs/src/main/paradox/release-notes/releases-2.0.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,25 @@
22

33
Apache Pekko 2.0.x releases support Java 17 and above.
44

5+
## 2.0.0-M2
6+
7+
This is milestone release and is aimed at testing this new major version
8+
by early adopters. This is experimental. This release should not be used in production.
9+
10+
See the [GitHub Milestone for 2.0.0-M2](https://github.com/apache/pekko/milestone/19?closed=1) for a fuller list of changes.
11+
12+
### Main changes
13+
14+
* Added many Akka changes that have recently become Apache Licensed (up to Akka 2.8.2).
15+
* Some more deprecated code has been removed but the changes are significantly smaller in this area than in 2.0.0-M1.
16+
517
## 2.0.0-M1
618

719
This is milestone release and is aimed at testing this new major version
820
by early adopters. This is experimental. This release should not be used in production.
921

22+
See the [GitHub Milestone for 2.0.0-M1](https://github.com/apache/pekko/milestone/5?closed=1) for a fuller list of changes.
23+
1024
### Main changes
1125

1226
* Java 17 is the new minimum

0 commit comments

Comments
 (0)