Skip to content

Commit

Permalink
chore: pre 24.10 release items (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-alfers authored Oct 25, 2024
1 parent b2e67d8 commit 755b5d5
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This is the process for committing code into main.
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.
7. If the branch merge conflicts with its target, rebase your branch onto the target branch.

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).
In case of questions about the contribution process or for discussion of specific issues please visit the [akka forum](https://discuss.akka.io/).

## Pull Request Requirements

Expand Down
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Business Source License 1.1
Parameters

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

Change Date: 2027-05-23
Change Date: 2027-10-25

Change License: Apache License, Version 2.0

Expand Down
1 change: 0 additions & 1 deletion docs/release-train-issue-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ For important patch releases, and only if critical issues have been fixed:

- [ ] Send a release notification to [Lightbend discuss](https://discuss.akka.io)
- [ ] Tweet using the [@akkateam](https://twitter.com/akkateam/) account (or ask someone to) about the new release
- [ ] Announce on [Gitter akka/akka](https://gitter.im/akka/akka)
- [ ] Announce internally (with links to Tweet, discuss)

For minor or major releases:
Expand Down
6 changes: 4 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ object Dependencies {
val Scala3 = "3.3.3"
val Scala2Versions = Seq(Scala213)
val ScalaVersions = Dependencies.Scala2Versions :+ Dependencies.Scala3
val AkkaVersion = System.getProperty("override.akka.version", "2.10.0-M1")
val AkkaVersion = System.getProperty("override.akka.version", "2.10.0")
val AkkaVersionInDocs = VersionNumber(AkkaVersion).numbers match { case Seq(major, minor, _*) => s"$major.$minor" }
val AkkaProjectionVersion = "1.6.0-M1"

// only for docs
val AkkaProjectionVersion = "1.6.0"
val AkkaProjectionVersionInDocs = VersionNumber(AkkaProjectionVersion).numbers match {
case Seq(major, minor, _*) => s"$major.$minor"
}
Expand Down
4 changes: 3 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
resolvers += "Akka library repository".at("https://repo.akka.io/maven")

addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") // for maintenance of copyright file header
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.8.0")
Expand All @@ -10,7 +12,7 @@ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")

//// docs
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-dependencies" % "0.2.4")
addSbtPlugin("com.lightbend.akka" % "sbt-paradox-akka" % "0.57")
addSbtPlugin("io.akka" % "sbt-paradox-akka" % "24.10.3")
addSbtPlugin("com.lightbend.sbt" % "sbt-publish-rsync" % "0.3")
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("com.github.sbt" % "sbt-site-paradox" % "1.7.0")
Expand Down
5 changes: 5 additions & 0 deletions project/project-info.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ project-info {
title: "Akka Persistence DynamoDB"
jpms-name: "akka.persistence.dynamodb"
levels: [
{
readiness: Supported
since: "2024-10-25"
since-version: "2.0.0"
}
{
readiness: "Incubating"
since: "2024-05-23"
Expand Down

0 comments on commit 755b5d5

Please sign in to comment.