File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
tasty/src/dotty/tools/tasty Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -134,14 +134,14 @@ object Build {
134134 * Simplified rules, given 3.$minor.$patch = $developedVersion
135135 * - Major version is always 28
136136 * - TASTY minor version:
137- * - in main (NIGHTLY): {if $patch == 0 then $minor else ${minor + 1}}
137+ * - in main (NIGHTLY): {if $patch == 0 || ${referenceVersion.matches(raw"3.$minor.0-RC\d")} then $minor else ${minor + 1}}
138138 * - in release branch is always equal to $minor
139139 * - TASTY experimental version:
140140 * - in main (NIGHTLY) is always experimental
141141 * - in release candidate branch is experimental if {patch == 0}
142142 * - in stable release is always non-experimetnal
143143 */
144- val expectedTastyVersion = " 28.8 -experimental-1"
144+ val expectedTastyVersion = " 28.7 -experimental-1"
145145 checkReleasedTastyVersion()
146146
147147 /** Final version of Scala compiler, controlled by environment variables. */
Original file line number Diff line number Diff line change @@ -324,7 +324,7 @@ object TastyFormat {
324324 * compatibility, but remains backwards compatible, with all
325325 * preceding `MinorVersion`.
326326 */
327- final val MinorVersion : Int = 8
327+ final val MinorVersion : Int = 7
328328
329329 /** Natural Number. The `ExperimentalVersion` allows for
330330 * experimentation with changes to TASTy without committing
You can’t perform that action at this time.
0 commit comments