Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

// 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
Loading