=sbt Update to scala 3.1.2 (#31351)

This commit is contained in:
kerr 2022-04-20 15:00:03 +08:00 committed by GitHub
parent dc480ac9da
commit 6210c887a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -296,7 +296,7 @@ object AkkaBuild {
// * `++` also requires the patch version, `+~` finds the first supported Scala version that matches the prefix (if any) // * `++` 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 // * 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("+~", "<version> <args>")({ (initialState: State, args: Seq[String]) => val switchVersion: Command = Command.args("+~", "<version> <args>")({ (initialState: State, args: Seq[String]) =>
{ {
val requestedVersionPrefix = args.head val requestedVersionPrefix = args.head

View file

@ -45,7 +45,7 @@ object Dependencies {
val scala213Version = "2.13.8" val scala213Version = "2.13.8"
// To get the fix for https://github.com/lampepfl/dotty/issues/13106 // To get the fix for https://github.com/lampepfl/dotty/issues/13106
// and restored static forwarders // and restored static forwarders
val scala3Version = "3.1.1" val scala3Version = "3.1.2"
val allScalaVersions = Seq(scala213Version, scala212Version, scala3Version) val allScalaVersions = Seq(scala213Version, scala212Version, scala3Version)
val reactiveStreamsVersion = "1.0.3" val reactiveStreamsVersion = "1.0.3"