Skip to content

Commit bcbdb5e

Browse files
Prepare development setup for 3.6.2 (#21811)
- Set baseVersiont o 3.6.2 - Set referenceVersion to 3.6.1 and move `src/boostrapped` files to `src` - Set mimaPreviousArtifactVersion to 3.6.1 (exception from the rule due to broken 3.6.0 release)
1 parent 34f1c54 commit bcbdb5e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

project/Build.scala

+6-4
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,12 @@ object DottyJSPlugin extends AutoPlugin {
9191
object Build {
9292
import ScaladocConfigs._
9393

94-
val referenceVersion = "3.5.2-RC1"
94+
val referenceVersion = "3.6.1"
9595

96-
val baseVersion = "3.6.1"
96+
val baseVersion = "3.6.2"
9797
// Will be required by some automation later
98-
val prereleaseVersion = s"$baseVersion-RC1"
98+
// TODO: Introduce automation and handling for RC versions before 3.6.2-RC1
99+
// val prereleaseVersion = s"$baseVersion-RC1"
99100

100101
// LTS or Next
101102
val versionLine = "Next"
@@ -113,8 +114,9 @@ object Build {
113114
* For a baseVersion `3.M.P` the mimaPreviousDottyVersion should be set to:
114115
* - `3.M.0` if `P > 0`
115116
* - `3.(M-1).0` if `P = 0`
117+
* 3.6.1 is an exception from this rule - 3.6.0 was a broken release
116118
*/
117-
val mimaPreviousDottyVersion = "3.5.0"
119+
val mimaPreviousDottyVersion = "3.6.1"
118120

119121
/** LTS version against which we check binary compatibility.
120122
*

0 commit comments

Comments
 (0)