Skip to content

Commit ae8bcf2

Browse files
committed
adopted to dotty-cps-asymnc 0.9.11
1 parent ef461c7 commit ae8bcf2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
//val dottyVersion = "3.0.0-RC2-bin-SNAPSHOT"
2-
val dottyVersion = "3.1.3"
2+
val dottyVersion = "3.2.0"
33
//val dottyVersion = "3.1.3-RC1-bin-SNAPSHOT"
44
//val dottyVersion = dottyLatestNightlyBuild.get
55

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

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.6.2
1+
sbt.version=1.7.1

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ 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")
44
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")
5-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1")
5+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.11.0")
66
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.0.1")

shared/src/main/scala/gopher/SelectMacro.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import scala.util.control.NonFatal
1313

1414
object SelectMacro:
1515

16-
import cps.macros.forest.TransformUtil
16+
import cps.macros.common.TransformUtil
1717

1818
sealed trait SelectGroupExpr[F[_],S, R]:
1919
def toExprOf[X <: SelectListeners[F,S, R]]: Expr[X]

0 commit comments

Comments
 (0)