Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump: scala-library 2.13.15 (was 2.13.14) #1327

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integration-test/dns-api-mesos/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolvers += "Akka library repository".at("https://repo.akka.io/maven")

name := "bootstrap-demo-dns-api"

scalaVersion := "2.13.14"
scalaVersion := "2.13.15"

def akkaManagementVersion(version: String) = version.split('+')(0)

Expand Down
2 changes: 1 addition & 1 deletion native-image-tests/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "native-image-tests"

version := "1.0"

scalaVersion := "2.13.14"
scalaVersion := "2.13.15"

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

Expand Down
6 changes: 4 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object Dependencies {
// sync with Java version in .github/workflows/release.yml#documentation
lazy val JavaDocLinkVersion = 17

val Scala213 = "2.13.14"
val Scala213 = "2.13.15"
val Scala3 = "3.3.3"
val CrossScalaVersions = Seq(Scala213, Scala3)

Expand All @@ -15,7 +15,9 @@ object Dependencies {
val AkkaBinaryVersion = VersionNumber(AkkaVersion).numbers match { case Seq(major, minor, _*) => s"$major.$minor" }
// Align the versions in integration-test/kubernetes-api-java/pom.xml
val AkkaHttpVersion = "10.7.0-M1"
val AkkaHttpBinaryVersion = VersionNumber(AkkaHttpVersion).numbers match { case Seq(major, minor, _*) => s"$major.$minor" }
val AkkaHttpBinaryVersion = VersionNumber(AkkaHttpVersion).numbers match {
case Seq(major, minor, _*) => s"$major.$minor"
}

val ScalaTestVersion = "3.2.19"
val ScalaTestPlusJUnitVersion = ScalaTestVersion + ".0"
Expand Down
2 changes: 1 addition & 1 deletion samples/akka-sample-cluster-kubernetes-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ThisBuild / organization := "com.lightbend"

name := "akka-sample-cluster-kubernetes"

scalaVersion := "2.13.14"
scalaVersion := "2.13.15"
lazy val akkaHttpVersion = "10.6.3"
lazy val akkaVersion = "2.9.3"
lazy val akkaManagementVersion = "1.5.3"
Expand Down
Loading