Skip to content

Commit 0c4931c

Browse files
chore: pre 24.10 release items (#621)
* chore: pre 24.10 release items
1 parent 60ee401 commit 0c4931c

File tree

8 files changed

+11
-10
lines changed

8 files changed

+11
-10
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ This is the process for committing code into main.
9191
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.
9292
7. If the branch merge conflicts with its target, rebase your branch onto the target branch.
9393

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

9696
## Pull Request Requirements
9797

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 R2DBC 1.2.5
6+
Licensed Work: Akka Persistence R2DBC 1.3.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-08-06
22+
Change Date: 2027-10-25
2323

2424
Change License: Apache License, Version 2.0
2525

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ inThisBuild(
1919
developers += Developer(
2020
"contributors",
2121
"Contributors",
22-
"https://gitter.im/akka/dev",
22+
2323
url("https://github.com/akka/akka-persistence-r2dbc/graphs/contributors")),
2424
releaseNotesURL := (
2525
if (isSnapshot.value) None

docs/release-train-issue-template.md

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

native-image-tests/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ scalaVersion := "2.13.15"
66

77
resolvers += "Akka library repository".at("https://repo.akka.io/maven")
88

9-
lazy val akkaVersion = sys.props.getOrElse("akka.version", "2.10.0-M1")
9+
lazy val akkaVersion = sys.props.getOrElse("akka.version", "2.10.0")
1010
lazy val akkaR2dbcVersion = sys.props.getOrElse("akka.r2dbc.version", "1.2.3")
1111

1212
fork := true

project/Dependencies.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ object Dependencies {
99
val Scala3 = "3.3.4"
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 AkkaPersistenceJdbcVersion = "5.5.0-M1" // only in migration tool tests
14+
val AkkaPersistenceJdbcVersion = "5.5.0" // only in migration tool tests
1515
val AkkaProjectionVersionInDocs = "current"
1616
val H2Version = "2.2.224"
1717
val R2dbcH2Version = "1.0.0.RELEASE"

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.8.0")
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ project-info {
1313
forums: [
1414
{
1515
text: "Lightbend Discuss"
16-
url: "https://discuss.lightbend.com/c/akka/"
16+
url: "https://discuss.akka.io/c/akka/"
1717
}
1818
]
1919
}

0 commit comments

Comments
 (0)