Skip to content

Commit 0bda21d

Browse files
committed
make snapshot dependency
1 parent 317bc06 commit 0bda21d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.sbt

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

6-
ThisBuild/version := "3.0.5"
6+
ThisBuild/version := "3.0.6-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.12",
14+
libraryDependencies += "com.github.rssh" %%% "dotty-cps-async" % "0.9.14-SNAPSHOT",
1515
libraryDependencies += "org.scalameta" %%% "munit" % "0.7.29" % Test,
1616
)
1717

@@ -34,7 +34,7 @@ lazy val gopher = crossProject(JSPlatform, JVMPlatform)
3434
.disablePlugins(SitePlugin)
3535
.disablePlugins(SitePreviewPlugin)
3636
.jvmSettings(
37-
scalacOptions ++= Seq( "-unchecked", "-Ycheck:macros", "-uniqid", "-Xprint:types", "-explain" ),
37+
scalacOptions ++= Seq( "-unchecked", "-Xcheck-macros", "-Ycheck:macro", "-uniqid", "-Xprint:types", "-explain" ),
3838
fork := true,
3939
/*
4040
javaOptions ++= Seq(
@@ -46,7 +46,7 @@ lazy val gopher = crossProject(JSPlatform, JVMPlatform)
4646
Compile / doc / scalacOptions := Seq("-groups",
4747
"-source-links:shared=github://rssh/scala-gopher/master#shared",
4848
"-source-links:jvm=github://rssh/scala-gopher/master#jvm"),
49-
mimaPreviousArtifacts := Set( "com.github.rssh" %% "scala-gopher" % "3.0.2" )
49+
mimaPreviousArtifacts := Set( "com.github.rssh" %% "scala-gopher" % "3.0.5" )
5050
).jsSettings(
5151
libraryDependencies += ("org.scala-js" %%% "scalajs-java-logging" % "1.0.0").cross(CrossVersion.for3Use2_13),
5252
// TODO: switch to ModuleES ?

0 commit comments

Comments
 (0)