Skip to content

Commit da72476

Browse files
committed
upgrade to 3.4.0 stable
1 parent 17c0c74 commit da72476

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

project/DottySupport.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import sbt.librarymanagement.{
1212
* Settings to support validation of TastyUnpickler against the release of dotty with the matching TASTy version
1313
*/
1414
object TastySupport {
15-
val supportedTASTyRelease = "3.4.0-RC4" // TASTY: 28.4-experimental-1 (preparing for final release 28.4)
15+
val supportedTASTyRelease = "3.4.0" // TASTY: 28.4-0
1616
val scala3Compiler = "org.scala-lang" % "scala3-compiler_3" % supportedTASTyRelease
1717
val scala3Library = "org.scala-lang" % "scala3-library_3" % supportedTASTyRelease
1818

src/compiler/scala/tools/nsc/tasty/TastyUnpickler.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ object TastyUnpickler {
7171
/** When Scala 3 is in an RC phase for a new minor version, we put here the TASTy of that Minor,
7272
* otherwise it should be empty.
7373
*/
74-
final val toolOverrides: List[TastyVersion] = List(TastyVersion(28, 4, 1) /* 3.4.0-RC4 */)
74+
final val toolOverrides: List[TastyVersion] = Nil
7575

7676
private def asScala3Compiler(version: TastyVersion): String =
7777
if (version.major == 28) {

0 commit comments

Comments
 (0)