Skip to content

Commit

Permalink
Merge pull request #10689 from scalacenter/tasty/switch-3.4.0-stable
Browse files Browse the repository at this point in the history
TASTy reader: upgrade to 3.4.0 stable
  • Loading branch information
SethTisue committed Feb 14, 2024
2 parents 515883b + da72476 commit 232521f
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
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
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 232521f

Please sign in to comment.