File tree 2 files changed +3
-8
lines changed
src/compiler/scala/tools/tasty 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import sbt.librarymanagement.{
12
12
* Settings to support validation of TastyUnpickler against the release of dotty with the matching TASTy version
13
13
*/
14
14
object TastySupport {
15
- val supportedTASTyRelease = " 3.3.0-RC6 " // TASTy version 28.4-1
15
+ val supportedTASTyRelease = " 3.3.0" // TASTy version 28.4-1
16
16
val scala3Compiler = " org.scala-lang" % " scala3-compiler_3" % supportedTASTyRelease
17
17
val scala3Library = " org.scala-lang" % " scala3-library_3" % supportedTASTyRelease
18
18
@@ -26,7 +26,7 @@ object TastySupport {
26
26
* Dotty in .travis.yml.
27
27
*/
28
28
object DottySupport {
29
- val dottyVersion = " 3.3.0-RC6 "
29
+ val dottyVersion = " 3.3.0"
30
30
val compileWithDotty : Boolean =
31
31
Option (System .getProperty(" scala.build.compileWithDotty" )).exists(_.toBoolean)
32
32
lazy val commonSettings = Seq (
Original file line number Diff line number Diff line change @@ -53,12 +53,7 @@ class TastyHeaderUnpickler(reader: TastyReader) {
53
53
compilerExperimental = ExperimentalVersion
54
54
)
55
55
56
- // TODO: remove this exception once we have a 3.3.0
57
- val dottyRCexception = validVersion ||
58
- (fileMajor == 28 && fileMinor == 3 && fileExperimental == 1
59
- && MajorVersion == 28 && MinorVersion == 3 && ExperimentalVersion == 0 )
60
-
61
- check(dottyRCexception, {
56
+ check(validVersion, {
62
57
val signature = signatureString(fileMajor, fileMinor, fileExperimental)
63
58
val toolingVersion = new String (bytes, toolingStart.index, toolingLength)
64
59
val producedByAddendum = s " \n The TASTy file was produced by $toolingVersion. $toolingAddendum"
You can’t perform that action at this time.
0 commit comments