Skip to content

Commit 8e0a755

Browse files
authored
Merge pull request #688 from http4s/update/series/0.5/munit-1.0.1
Update munit to 1.0.1 in series/0.5
2 parents cb05a00 + 01ad3e0 commit 8e0a755

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

build.sbt

+7-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ val jetty = "12.0.12"
2626

2727
val netty = "4.1.112.Final"
2828

29-
val munit = "0.7.29"
29+
val munit = "1.0.1"
30+
val munitScalaCheck = "1.0.0"
3031

3132
val io_uring = "0.0.25.Final"
3233

@@ -73,11 +74,12 @@ lazy val server = project
7374
"org.http4s" %% "http4s-dsl" % http4sVersion % Test,
7475
"ch.qos.logback" % "logback-classic" % "1.4.5" % Test,
7576
"org.scalameta" %% "munit" % munit % Test,
76-
"org.scalameta" %% "munit-scalacheck" % munit % Test,
77+
"org.scalameta" %% "munit-scalacheck" % munitScalaCheck % Test,
7778
"org.http4s" %% "http4s-circe" % http4sVersion % Test,
7879
"org.http4s" %% "http4s-jdk-http-client" % "0.9.1" % Test,
79-
"org.typelevel" %% "munit-cats-effect" % "2.0.0-M5" % Test
80+
"org.typelevel" %% "munit-cats-effect" % "2.0.0" % Test
8081
),
82+
libraryDependencySchemes += "org.typelevel" %% "munit-cats-effect" % VersionScheme.Always, // "early-semver",
8183
libraryDependencies ++= nativeNettyModules,
8284
mimaBinaryIssueFilters ++= Seq(
8385
ProblemFilters.exclude[IncompatibleResultTypeProblem](
@@ -116,8 +118,9 @@ lazy val client = project
116118
"com.github.bbottema" % "java-socks-proxy-server" % "4.1.0" % Test,
117119
"org.scalameta" %% "munit" % munit % Test,
118120
"ch.qos.logback" % "logback-classic" % "1.2.13" % Test,
119-
"org.typelevel" %% "munit-cats-effect" % "2.0.0-M5" % Test
121+
"org.typelevel" %% "munit-cats-effect" % "2.0.0" % Test
120122
),
123+
libraryDependencySchemes += "org.typelevel" %% "munit-cats-effect" % VersionScheme.Always, // "early-semver",
121124
libraryDependencies ++= nativeNettyModules,
122125
mimaBinaryIssueFilters ++= Seq(
123126
ProblemFilters.exclude[Problem]("org.http4s.netty.client.Http4sChannelPoolMap"),

0 commit comments

Comments
 (0)