Skip to content

Commit

Permalink
upgrade to 3.4.0 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
bishabosha committed Feb 13, 2024
1 parent 17c0c74 commit da72476
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project/DottySupport.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import sbt.librarymanagement.{
* Settings to support validation of TastyUnpickler against the release of dotty with the matching TASTy version
*/
object TastySupport {
val supportedTASTyRelease = "3.4.0-RC4" // TASTY: 28.4-experimental-1 (preparing for final release 28.4)
val supportedTASTyRelease = "3.4.0" // TASTY: 28.4-0
val scala3Compiler = "org.scala-lang" % "scala3-compiler_3" % supportedTASTyRelease
val scala3Library = "org.scala-lang" % "scala3-library_3" % supportedTASTyRelease

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/scala/tools/nsc/tasty/TastyUnpickler.scala
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ object TastyUnpickler {
/** When Scala 3 is in an RC phase for a new minor version, we put here the TASTy of that Minor,
* otherwise it should be empty.
*/
final val toolOverrides: List[TastyVersion] = List(TastyVersion(28, 4, 1) /* 3.4.0-RC4 */)
final val toolOverrides: List[TastyVersion] = Nil

private def asScala3Compiler(version: TastyVersion): String =
if (version.major == 28) {
Expand Down

0 comments on commit da72476

Please sign in to comment.