Skip to content

Commit 7ce8721

Browse files
committed
4.0.0 snapshot due to binary incompability caused by dotty-cps-async
versions
1 parent 1a7514b commit 7ce8721

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ val dottyVersion = "3.3.0"
33
//val dottyVersion = "3.1.3-RC1-bin-SNAPSHOT"
44
//val dottyVersion = dottyLatestNightlyBuild.get
55

6-
ThisBuild/version := "3.0.8-SNAPSHOT"
6+
ThisBuild/version := "4.0.0-SNAPSHOT"
77
ThisBuild/versionScheme := Some("semver-spec")
88

99
val sharedSettings = Seq(
1010
organization := "com.github.rssh",
1111
scalaVersion := dottyVersion,
1212
name := "scala-gopher",
1313
//resolvers += "Local Ivy Repository" at "file://"+Path.userHome.absolutePath+"/.ivy2/local",
14-
libraryDependencies += "com.github.rssh" %%% "dotty-cps-async" % "0.9.17-RC1",
15-
libraryDependencies += "org.scalameta" %%% "munit" % "0.7.29" % Test,
14+
libraryDependencies += "com.github.rssh" %%% "dotty-cps-async" % "0.9.17",
15+
libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0-M8" % Test,
1616
)
1717

1818
lazy val root = project
@@ -48,7 +48,7 @@ lazy val gopher = crossProject(JSPlatform, JVMPlatform)
4848
Compile / doc / scalacOptions := Seq("-groups",
4949
"-source-links:shared=github://rssh/scala-gopher/master#shared",
5050
"-source-links:jvm=github://rssh/scala-gopher/master#jvm"),
51-
mimaPreviousArtifacts := Set( "com.github.rssh" %% "scala-gopher" % "3.0.5" )
51+
mimaPreviousArtifacts := Set( "com.github.rssh" %% "scala-gopher" % "3.0.7" )
5252
).jsSettings(
5353
libraryDependencies += ("org.scala-js" %%% "scalajs-java-logging" % "1.0.0").cross(CrossVersion.for3Use2_13),
5454
// TODO: switch to ModuleES ?

project/plugins.sbt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.2")
22
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.1")
33
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
4-
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")
5-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.0")
4+
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.1.0")
5+
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0")
6+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.1")
7+
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.14")
68
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.0.1")

0 commit comments

Comments
 (0)