File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -473,7 +473,10 @@ object Build {
473
473
474
474
lazy val `scala3-interfaces` = project.in(file(" interfaces" )).
475
475
settings(commonJavaSettings).
476
- settings(commonMiMaSettings)
476
+ settings(commonMiMaSettings).
477
+ settings(
478
+ versionScheme := Some (" semver-spec" )
479
+ )
477
480
478
481
/** Find an artifact with the given `name` in `classpath` */
479
482
def findArtifact (classpath : Def .Classpath , name : String ): File = classpath
@@ -1786,7 +1789,10 @@ object Build {
1786
1789
def asTastyCore (implicit mode : Mode ): Project = project.withCommonSettings.
1787
1790
dependsOn(dottyLibrary).
1788
1791
settings(tastyCoreSettings).
1789
- settings(disableDocSetting)
1792
+ settings(disableDocSetting).
1793
+ settings(
1794
+ versionScheme := Some (" semver-spec" )
1795
+ )
1790
1796
1791
1797
def asTastyCoreScala2 : Project = project.settings(commonScala2Settings)
1792
1798
You can’t perform that action at this time.
0 commit comments