1
1
// val dottyVersion = "3.0.0-RC2-bin-SNAPSHOT"
2
- val dottyVersion = " 3.0.0-RC3 "
2
+ val dottyVersion = " 3.0.0"
3
3
// val dottyVersion = dottyLatestNightlyBuild.get
4
4
5
- ThisBuild / version := " 2.0.1-RC3 "
5
+ ThisBuild / version := " 2.0.2 "
6
6
7
7
val sharedSettings = Seq (
8
8
organization := " com.github.rssh" ,
9
9
scalaVersion := dottyVersion,
10
10
name := " scala-gopher" ,
11
11
resolvers += " Local Ivy Repository" at " file://" + Path .userHome.absolutePath+ " /.ivy2/local" ,
12
- libraryDependencies += " com.github.rssh" %%% " dotty-cps-async" % " 0.7.0-SNAPSHOT " ,
13
- libraryDependencies += " org.scalameta" %%% " munit" % " 0.7.25 " % Test ,
12
+ libraryDependencies += " com.github.rssh" %%% " dotty-cps-async" % " 0.7.0" ,
13
+ libraryDependencies += " org.scalameta" %%% " munit" % " 0.7.26 " % Test ,
14
14
testFrameworks += new TestFramework (" munit.Framework" )
15
15
)
16
16
@@ -32,7 +32,7 @@ lazy val gopher = crossProject(JSPlatform, JVMPlatform)
32
32
.jvmSettings(
33
33
scalacOptions ++= Seq ( " -unchecked" , " -Ycheck:macros" , " -uniqid" , " -Xprint:types" ),
34
34
).jsSettings(
35
- libraryDependencies += (" org.scala-js" %%% " scalajs-java-logging" % " 1.0.0" ).withDottyCompat(scalaVersion.value ),
35
+ libraryDependencies += (" org.scala-js" %%% " scalajs-java-logging" % " 1.0.0" ).cross( CrossVersion .for3Use2_13 ),
36
36
// TODO: switch to ModuleES ?
37
37
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind .CommonJSModule ) },
38
38
scalaJSUseMainModuleInitializer := true ,
0 commit comments