Skip to content

Commit 2a47669

Browse files
authored
Minor/major updates
1 parent f888562 commit 2a47669

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

build.sbt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ lazy val github4s = (crossProject(JSPlatform, JVMPlatform))
2626
// See the README for why this is necessary
2727
// https://github.com/scala-js/scala-js-macrotask-executor/tree/v1.0.0
2828
// tl;dr: without it, performance problems and concurrency bugs abound
29-
libraryDependencies += "org.scala-js" %%% "scala-js-macrotask-executor" % "1.0.0" % Test
29+
libraryDependencies += "org.scala-js" %%% "scala-js-macrotask-executor" % "1.0.0" % Test,
30+
// Disable nonunit warning on tests
31+
Test / scalacOptions -= "-Wnonunit-statement"
3032
)
3133

3234
//////////

project/ProjectPlugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ object ProjectPlugin extends AutoPlugin {
1818
val cats: String = "2.9.0"
1919
val circe: String = "0.14.3"
2020
val expecty = "0.16.0"
21-
val http4s: String = "0.23.16"
21+
val http4s: String = "0.23.17"
2222
val http4sBlazeClient: String = "0.23.13"
2323
val paradise: String = "2.1.1"
2424
val scalacheck = "1.17.0"

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ addSbtPlugin("com.alejandrohdezma" % "sbt-github" % "0.11.6"
1313
addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.11.6")
1414
addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.11.6")
1515
addSbtPlugin("com.alejandrohdezma" % "sbt-remove-test-from-pom" % "0.1.0")
16-
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.1")
16+
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.2")
1717
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")
1818
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.12.0")

0 commit comments

Comments
 (0)