diff --git a/project/AkkaBuild.scala b/project/AkkaBuild.scala index 802cfd7af9..02cbbf7818 100644 --- a/project/AkkaBuild.scala +++ b/project/AkkaBuild.scala @@ -296,7 +296,7 @@ object AkkaBuild { // * `++` also requires the patch version, `+~` finds the first supported Scala version that matches the prefix (if any) // * When subprojects need to be excluded, ++ needs to be specified for each command // - // So the `++` equivalent of the above example is `sbt "++ 3.1.1-RC1 clean" "++ 3.1.1-RC1 compile"` + // So the `++` equivalent of the above example is `sbt "++ 3.1.2 clean" "++ 3.1.2 compile"` val switchVersion: Command = Command.args("+~", " ")({ (initialState: State, args: Seq[String]) => { val requestedVersionPrefix = args.head diff --git a/project/Dependencies.scala b/project/Dependencies.scala index ed3369f133..0e2595f346 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -45,7 +45,7 @@ object Dependencies { val scala213Version = "2.13.8" // To get the fix for https://github.com/lampepfl/dotty/issues/13106 // and restored static forwarders - val scala3Version = "3.1.1" + val scala3Version = "3.1.2" val allScalaVersions = Seq(scala213Version, scala212Version, scala3Version) val reactiveStreamsVersion = "1.0.3"