Skip to content

Commit 216b76c

Browse files
Merge pull request #13386 from dotty-staging/fix-#13385
Bumb TASTy minor version
2 parents f70ee29 + 052ca4c commit 216b76c

File tree

2 files changed

+20
-32
lines changed

2 files changed

+20
-32
lines changed

library/src-non-bootstrapped/scala/annotation/internal/experimentalTest.scala

Lines changed: 0 additions & 12 deletions
This file was deleted.

tasty/src/dotty/tools/tasty/TastyFormat.scala

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -272,34 +272,34 @@ object TastyFormat {
272272
*/
273273
final val header: Array[Int] = Array(0x5C, 0xA1, 0xAB, 0x1F)
274274

275-
/**Natural number. Each increment of the `MajorVersion` begins a
276-
* new series of backward compatible TASTy versions.
275+
/** Natural number. Each increment of the `MajorVersion` begins a
276+
* new series of backward compatible TASTy versions.
277277
*
278-
* A TASTy file in either the preceeding or succeeding series is
279-
* incompatible with the current value.
278+
* A TASTy file in either the preceeding or succeeding series is
279+
* incompatible with the current value.
280280
*/
281281
final val MajorVersion: Int = 28
282282

283-
/**Natural number. Each increment of the `MinorVersion`, within
284-
* a series declared by the `MajorVersion`, breaks forward
285-
* compatibility, but remains backwards compatible, with all
286-
* preceeding `MinorVersion`.
283+
/** Natural number. Each increment of the `MinorVersion`, within
284+
* a series declared by the `MajorVersion`, breaks forward
285+
* compatibility, but remains backwards compatible, with all
286+
* preceeding `MinorVersion`.
287287
*/
288-
final val MinorVersion: Int = 1
288+
final val MinorVersion: Int = 2
289289

290-
/**Natural Number. The `ExperimentalVersion` allows for
291-
* experimentation with changes to TASTy without committing
292-
* to any guarantees of compatibility.
290+
/** Natural Number. The `ExperimentalVersion` allows for
291+
* experimentation with changes to TASTy without committing
292+
* to any guarantees of compatibility.
293293
*
294-
* A zero value indicates that the TASTy version is from a
295-
* stable, final release.
294+
* A zero value indicates that the TASTy version is from a
295+
* stable, final release.
296296
*
297-
* A strictly positive value indicates that the TASTy
298-
* version is experimental. An experimental TASTy file
299-
* can only be read by a tool with the same version.
300-
* However, tooling with an experimental TASTy version
301-
* is able to read final TASTy documents if the file's
302-
* `MinorVersion` is strictly less than the current value.
297+
* A strictly positive value indicates that the TASTy
298+
* version is experimental. An experimental TASTy file
299+
* can only be read by a tool with the same version.
300+
* However, tooling with an experimental TASTy version
301+
* is able to read final TASTy documents if the file's
302+
* `MinorVersion` is strictly less than the current value.
303303
*/
304304
final val ExperimentalVersion: Int = 1
305305

0 commit comments

Comments
 (0)