Skip to content

Commit 755b5d5

Browse files
chore: pre 24.10 release items (#91)
1 parent b2e67d8 commit 755b5d5

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This is the process for committing code into main.
2222
6. After the review you should fix the issues (review comments, CI failures) by pushing a new commit for new review, iterating until the reviewers give their thumbs up and CI tests pass.
2323
7. If the branch merge conflicts with its target, rebase your branch onto the target branch.
2424

25-
In case of questions about the contribution process or for discussion of specific issues please visit the [akka/dev gitter chat](https://gitter.im/akka/dev).
25+
In case of questions about the contribution process or for discussion of specific issues please visit the [akka forum](https://discuss.akka.io/).
2626

2727
## Pull Request Requirements
2828

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Business Source License 1.1
33
Parameters
44

55
Licensor: Lightbend, Inc.
6-
Licensed Work: Akka Persistence DynamoDB 0.1
6+
Licensed Work: Akka Persistence DynamoDB 2.0.0
77
This license applies to all sub directories and files
88
UNLESS another license file is present in a sub
99
directory, then that other license applies to all files
@@ -19,7 +19,7 @@ Additional Use Grant:
1919
Connecting to a Play Framework websocket and/or Play Framework
2020
request/response bodies for server and play-ws client.
2121

22-
Change Date: 2027-05-23
22+
Change Date: 2027-10-25
2323

2424
Change License: Apache License, Version 2.0
2525

docs/release-train-issue-template.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ For important patch releases, and only if critical issues have been fixed:
4949
5050
- [ ] Send a release notification to [Lightbend discuss](https://discuss.akka.io)
5151
- [ ] Tweet using the [@akkateam](https://twitter.com/akkateam/) account (or ask someone to) about the new release
52-
- [ ] Announce on [Gitter akka/akka](https://gitter.im/akka/akka)
5352
- [ ] Announce internally (with links to Tweet, discuss)
5453
5554
For minor or major releases:

project/Dependencies.scala

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ object Dependencies {
99
val Scala3 = "3.3.3"
1010
val Scala2Versions = Seq(Scala213)
1111
val ScalaVersions = Dependencies.Scala2Versions :+ Dependencies.Scala3
12-
val AkkaVersion = System.getProperty("override.akka.version", "2.10.0-M1")
12+
val AkkaVersion = System.getProperty("override.akka.version", "2.10.0")
1313
val AkkaVersionInDocs = VersionNumber(AkkaVersion).numbers match { case Seq(major, minor, _*) => s"$major.$minor" }
14-
val AkkaProjectionVersion = "1.6.0-M1"
14+
15+
// only for docs
16+
val AkkaProjectionVersion = "1.6.0"
1517
val AkkaProjectionVersionInDocs = VersionNumber(AkkaProjectionVersion).numbers match {
1618
case Seq(major, minor, _*) => s"$major.$minor"
1719
}

project/plugins.sbt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
resolvers += "Akka library repository".at("https://repo.akka.io/maven")
2+
13
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") // for maintenance of copyright file header
24
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")
35
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.8.0")
@@ -10,7 +12,7 @@ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
1012

1113
//// docs
1214
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-dependencies" % "0.2.4")
13-
addSbtPlugin("com.lightbend.akka" % "sbt-paradox-akka" % "0.57")
15+
addSbtPlugin("io.akka" % "sbt-paradox-akka" % "24.10.3")
1416
addSbtPlugin("com.lightbend.sbt" % "sbt-publish-rsync" % "0.3")
1517
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
1618
addSbtPlugin("com.github.sbt" % "sbt-site-paradox" % "1.7.0")

project/project-info.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ project-info {
2121
title: "Akka Persistence DynamoDB"
2222
jpms-name: "akka.persistence.dynamodb"
2323
levels: [
24+
{
25+
readiness: Supported
26+
since: "2024-10-25"
27+
since-version: "2.0.0"
28+
}
2429
{
2530
readiness: "Incubating"
2631
since: "2024-05-23"

0 commit comments

Comments
 (0)