Skip to content

Commit 245a05d

Browse files
committed
release for scala-3.0.0
1 parent b3c2dcd commit 245a05d

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
//val dottyVersion = "3.0.0-RC2-bin-SNAPSHOT"
2-
val dottyVersion = "3.0.0-RC3"
2+
val dottyVersion = "3.0.0"
33
//val dottyVersion = dottyLatestNightlyBuild.get
44

5-
ThisBuild/version := "2.0.1-RC3"
5+
ThisBuild/version := "2.0.2"
66

77
val sharedSettings = Seq(
88
organization := "com.github.rssh",
99
scalaVersion := dottyVersion,
1010
name := "scala-gopher",
1111
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,
1414
testFrameworks += new TestFramework("munit.Framework")
1515
)
1616

@@ -32,7 +32,7 @@ lazy val gopher = crossProject(JSPlatform, JVMPlatform)
3232
.jvmSettings(
3333
scalacOptions ++= Seq( "-unchecked", "-Ycheck:macros", "-uniqid", "-Xprint:types" ),
3434
).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),
3636
// TODO: switch to ModuleES ?
3737
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule) },
3838
scalaJSUseMainModuleInitializer := true,

project/plugins.sbt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.3")
21
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.2")
32
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.0")
43
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")

0 commit comments

Comments
 (0)