File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
modules/integration/src/test/scala/scala/cli/integration Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -1037,6 +1037,7 @@ trait CliIntegration extends SbtModule with ScalaCliPublishModule with HasTests
1037
1037
| def scala3LtsPrefix = " ${Scala .scala3LtsPrefix}"
1038
1038
| def scala3Lts = " ${Scala .scala3Lts}"
1039
1039
| def scala3NextRc = " ${Scala .scala3NextRc}"
1040
+ | def scala3NextRcAnnounced = " ${Scala .scala3NextRcAnnounced}"
1040
1041
| def scala3Next = " ${Scala .scala3Next}"
1041
1042
| def scala3NextAnnounced = " ${Scala .scala3NextAnnounced}"
1042
1043
| def defaultScala = " ${Scala .defaultUser}"
Original file line number Diff line number Diff line change @@ -840,7 +840,7 @@ class SipScalaTests extends ScalaCliSuite
840
840
TestInputs .empty.fromRoot { root =>
841
841
val localCache = root / " local-cache"
842
842
val localBin = root / " local-bin"
843
- val scalaVersion = Constants .scala3NextAnnounced
843
+ val scalaVersion = Constants .scala3NextRcAnnounced
844
844
withScalaRunnerWrapper(
845
845
root = root,
846
846
localCache = localCache,
Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ object Scala {
10
10
def scala3Lts = s " $scala3LtsPrefix.4 " // the LTS version currently used in the build
11
11
def scala3NextPrefix = " 3.5"
12
12
def scala3Next = s " $scala3NextPrefix.2 " // the newest/next version of Scala
13
- def scala3NextAnnounced = scala3Next // the newest/next version of Scala that's been announced
14
- def scala3NextRc = " 3.6.2-RC3" // the latest RC version of Scala Next
13
+ def scala3NextAnnounced = scala3Next // the newest/next version of Scala that's been announced
14
+ def scala3NextRc = " 3.6.2-RC3" // the latest RC version of Scala Next
15
+ def scala3NextRcAnnounced = scala3NextRc // the latest RC version of Scala Next
15
16
16
17
// The Scala version used to build the CLI itself.
17
18
def defaultInternal = sys.props.get(" scala.version.internal" ).getOrElse(scala3Lts)
You can’t perform that action at this time.
0 commit comments