Skip to content

Commit 29c0be6

Browse files
Update scala-async to 1.0.1 (#387)
* Update scala-async to 1.0.1 * Add missing -Xasync in integration tests scalac options Co-authored-by: Alexandre Archambault <[email protected]>
1 parent f605051 commit 29c0be6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ trait CliIntegrationBase extends SbtModule with ScalaCliPublishModule with HasTe
322322
PathRef(T.dest / "working-dir")
323323
}
324324
def scalacOptions = T {
325-
super.scalacOptions() ++ Seq("-Ywarn-unused", "-deprecation")
325+
super.scalacOptions() ++ Seq("-Xasync", "-Ywarn-unused", "-deprecation")
326326
}
327327

328328
def sources = T.sources {

project/deps.sc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ object Deps {
6565
def pprint = ivy"com.lihaoyi::pprint:0.6.6"
6666
def prettyStacktraces = ivy"org.virtuslab::pretty-stacktraces:0.0.0+27-b9d69198-SNAPSHOT"
6767
def scala3Compiler(sv: String) = ivy"org.scala-lang::scala3-compiler:$sv"
68-
def scalaAsync = ivy"org.scala-lang.modules::scala-async:0.10.0".exclude("*" -> "*")
68+
def scalaAsync = ivy"org.scala-lang.modules::scala-async:1.0.1".exclude("*" -> "*")
6969
def scalac(sv: String) = ivy"org.scala-lang:scala-compiler:$sv"
7070
def scalafmtCli = ivy"org.scalameta::scalafmt-cli:3.0.3"
7171
def scalaJsEnvNodeJs = ivy"org.scala-js::scalajs-env-nodejs:1.2.1"

0 commit comments

Comments
 (0)