Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TASTy reader: upgrade to 3.4.0 stable #10689

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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