Skip to content

Commit

Permalink
chore: pre 24.10 release items
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-alfers committed Oct 24, 2024
1 parent 1536398 commit 9a06708
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ You're always welcome to submit your PR straight away and start the discussion (

# The Akka Community

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).

You may also check out these [other resources](https://akka.io/get-involved/).

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The Akka family of projects is managed by teams at [Lightbend](https://lightbend

Replicated [Akka Persistence](https://doc.akka.io/libraries/akka-core/current/scala/persistence.html) journal and snapshot store backed by [Apache Cassandra](https://cassandra.apache.org/).

For questions please use the [discuss.akka.io](https://discuss.lightbend.com/c/akka/).
For questions please use the [discuss.akka.io](https://discuss.akka.io/c/akka/).


## Documentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ import akka.stream.scaladsl.Source

/**
* UUID generation is deliberately externalized to allow subclasses to customize the time based uuid for special cases.
* see https://discuss.lightbend.com/t/akka-persistence-cassandra-events-by-tags-bucket-size-based-on-time-vs-burst-load/1411 and make sure you understand the risk of doing this wrong.
* see https://discuss.akka.io/t/akka-persistence-cassandra-events-by-tags-bucket-size-based-on-time-vs-burst-load/1411 and make sure you understand the risk of doing this wrong.
*/
protected def generateUUID(pr: PersistentRepr): UUID = Uuids.timeBased()

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 @@ -46,7 +46,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
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ object Dependencies {
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 CassandraVersionInDocs = "4.0"
// Should be sync with the version of the driver in Alpakka Cassandra
val CassandraDriverVersion = "4.17.0"
val DriverVersionInDocs = "4.14"

val AlpakkaVersion = "9.0.0-M1"
val AlpakkaVersion = "9.0.0"
val AlpakkaVersionInDocs = "8.0"
// for example
val AkkaManagementVersion = "1.5.0"
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")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.2.0")
Expand All @@ -9,7 +11,7 @@ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1")
addDependencyTreePlugin

// Documentation
addSbtPlugin("com.lightbend.akka" % "sbt-paradox-akka" % "0.57")
addSbtPlugin("io.akka" % "sbt-paradox-akka" % "24.10.3")
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-dependencies" % "0.2.4")
addSbtPlugin("com.lightbend.sbt" % "sbt-publish-rsync" % "0.3")
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
Expand Down
2 changes: 1 addition & 1 deletion project/project-info.conf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ project-info {
forums: [
{
text: "Lightbend Discuss"
url: "https://discuss.lightbend.com/c/akka/"
url: "https://discuss.akka.io/c/akka/"
}
]
}
Expand Down

0 comments on commit 9a06708

Please sign in to comment.