Skip to content

Commit

Permalink
Prepare development setup for 3.6.2 (#21811)
Browse files Browse the repository at this point in the history
- 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)
  • Loading branch information
WojciechMazur authored Oct 19, 2024
1 parent 34f1c54 commit bcbdb5e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
File renamed without changes.
10 changes: 6 additions & 4 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,12 @@ object DottyJSPlugin extends AutoPlugin {
object Build {
import ScaladocConfigs._

val referenceVersion = "3.5.2-RC1"
val referenceVersion = "3.6.1"

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

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

/** LTS version against which we check binary compatibility.
*
Expand Down

0 comments on commit bcbdb5e

Please sign in to comment.