Skip to content

Commit

Permalink
v1.1.0 release notes (#329)
Browse files Browse the repository at this point in the history
* v1.1.0 release notes

* Update publish-1.1-docs.yml
  • Loading branch information
pjfanning authored Oct 13, 2024
1 parent 5acf8c5 commit c425e5a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
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 @@ -25,28 +25,28 @@ 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"
env:
JAVA_OPTS: "-verbose:gc -Xmx4g"

# Create directory structure upfront since rsync does not create intermediate directories otherwise
- name: Create directory structure
run: |-
mkdir -p target/nightly-docs/docs/pekko-management/1.1.0-M1/
mkdir -p target/nightly-docs/docs/pekko-management/1.1.0/
mkdir -p target/nightly-docs/docs/pekko-management/1.1/
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-management/1.1.0-M1/docs
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-management/1.1.0/docs
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-management/1.1/docs
rm -r docs/target/paradox/site/main/
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-management/1.1.0-M1/api
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-management/1.1.0/api
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-management/1.1/api
rm -r target/scala-2.13/unidoc
- name: Upload 1.1.0-M1 nightly docs
- name: Upload 1.1.0 nightly docs
uses: ./.github/actions/sync-nightlies
with:
upload: true
switches: --archive --compress --update --delete --progress --relative
local_path: target/nightly-docs/./docs/pekko-management/1.1.0-M1 # The intermediate dot is to show `--relative` which paths to operate on
local_path: target/nightly-docs/./docs/pekko-management/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
7 changes: 4 additions & 3 deletions docs/src/main/paradox/release-notes/releases-1.1.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# Release Notes (1.1.x)

## 1.1.0-M1
## 1.1.0

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

### Additions

* Support Kubernetes Native Leases ([PR217](https://github.com/apache/pekko-persistence-jdbc/pull/217))
* Add pekko-management-bom (Bill of Materials) ([PR244](https://github.com/apache/pekko-persistence-jdbc/pull/244))
* Add startup checks ([PR293](https://github.com/apache/pekko-persistence-jdbc/pull/293)) (not in v1.1.0-M1)
* Support Kubernetes Service Discovery Custom Settings ([PR313](https://github.com/apache/pekko-persistence-jdbc/pull/313)) (not in v1.1.0-M1)

### Dependency Upgrades

Expand Down

0 comments on commit c425e5a

Please sign in to comment.