From b62b53ce0b02889cdd6e2a7be35c9192f7706bf1 Mon Sep 17 00:00:00 2001 From: Hamza REMMAL Date: Thu, 4 Jul 2024 10:23:02 +0200 Subject: [PATCH] Set baseVersion to 3.6.0 instead of 3.6.0-RC1 --- project/Build.scala | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/project/Build.scala b/project/Build.scala index 28146989e40c..4cfb4b081ab0 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -88,7 +88,9 @@ object Build { val referenceVersion = "3.4.2-RC1" - val baseVersion = "3.6.0-RC1" + val baseVersion = "3.6.0" + // Will be required by some automation later + val prereleaseVersion = s"$baseVersion-RC1" // LTS or Next val versionLine = "Next" @@ -169,9 +171,9 @@ object Build { if (isRelease) baseVersion else if (isNightly) - baseVersion + "-bin-" + VersionUtil.commitDate + "-" + VersionUtil.gitHash + "-NIGHTLY" + baseVersion + "-RC1-bin-" + VersionUtil.commitDate + "-" + VersionUtil.gitHash + "-NIGHTLY" else - baseVersion + "-bin-SNAPSHOT" + baseVersion + "-RC1-bin-SNAPSHOT" } val dottyNonBootstrappedVersion = { // Make sure sbt always computes the scalaBinaryVersion correctly