Skip to content

Commit 82ec2dc

Browse files
committed
Declare versioning scheme of scala3-interfaces and tasty-core
1 parent 2c9af7d commit 82ec2dc

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

project/Build.scala

+8-2
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,10 @@ object Build {
473473

474474
lazy val `scala3-interfaces` = project.in(file("interfaces")).
475475
settings(commonJavaSettings).
476-
settings(commonMiMaSettings)
476+
settings(commonMiMaSettings).
477+
settings(
478+
versionScheme := Some("semver-spec")
479+
)
477480

478481
/** Find an artifact with the given `name` in `classpath` */
479482
def findArtifact(classpath: Def.Classpath, name: String): File = classpath
@@ -1786,7 +1789,10 @@ object Build {
17861789
def asTastyCore(implicit mode: Mode): Project = project.withCommonSettings.
17871790
dependsOn(dottyLibrary).
17881791
settings(tastyCoreSettings).
1789-
settings(disableDocSetting)
1792+
settings(disableDocSetting).
1793+
settings(
1794+
versionScheme := Some("semver-spec")
1795+
)
17901796

17911797
def asTastyCoreScala2: Project = project.settings(commonScala2Settings)
17921798

0 commit comments

Comments
 (0)