@@ -4,7 +4,7 @@ import mill._, scalalib._, scalajslib._, scalanativelib._, publish._
44trait SourcecodeModule extends PublishModule {
55 def artifactName = " sourcecode"
66
7- def publishVersion = " 0.1.8 "
7+ def publishVersion = " 0.2.0 "
88
99 def pomSettings = PomSettings (
1010 description = artifactName(),
@@ -64,8 +64,7 @@ trait SourcecodeTestModule extends ScalaModule {
6464}
6565
6666object sourcecode extends Module {
67- val dottyVersion = Option (sys.props(" dottyVersion" ))
68- object jvm extends Cross [JvmSourcecodeModule ]((List (" 2.11.12" , " 2.12.8" , " 2.13.0" ) ++ dottyVersion): _* )
67+ object jvm extends Cross [JvmSourcecodeModule ](" 2.11.12" , " 2.12.10" , " 2.13.1" , " 0.21.0-RC1" )
6968 class JvmSourcecodeModule (val crossScalaVersion : String )
7069 extends SourcecodeMainModule with ScalaModule with SourcecodeModule {
7170
@@ -86,7 +85,8 @@ object sourcecode extends Module {
8685 }
8786
8887 object js extends Cross [JsSourcecodeModule ](
89- (" 2.11.12" , " 0.6.28" ), (" 2.12.8" , " 0.6.28" ), (" 2.13.0" , " 0.6.28" )/* , ("2.12.8", "1.0.0-M8"), ("2.13.0", "1.0.0-M8")*/
88+ (" 2.11.12" , " 0.6.28" ), (" 2.12.10" , " 0.6.28" ), (" 2.13.1" , " 0.6.28" ),
89+ (" 2.11.12" , " 1.0.0-RC2" ), (" 2.12.10" , " 1.0.0-RC2" ), (" 2.13.1" , " 1.0.0-RC2" )
9090 )
9191 class JsSourcecodeModule (val crossScalaVersion : String , crossJSVersion : String )
9292 extends SourcecodeMainModule with ScalaJSModule with SourcecodeModule {
@@ -117,4 +117,4 @@ object sourcecode extends Module {
117117 val crossScalaVersion = NativeSourcecodeModule .this .crossScalaVersion
118118 }
119119 }
120- }
120+ }
0 commit comments