@@ -26,7 +26,8 @@ val jetty = "12.0.12"
26
26
27
27
val netty = " 4.1.112.Final"
28
28
29
- val munit = " 0.7.29"
29
+ val munit = " 1.0.1"
30
+ val munitScalaCheck = " 1.0.0"
30
31
31
32
val io_uring = " 0.0.25.Final"
32
33
@@ -73,11 +74,12 @@ lazy val server = project
73
74
" org.http4s" %% " http4s-dsl" % http4sVersion % Test ,
74
75
" ch.qos.logback" % " logback-classic" % " 1.4.5" % Test ,
75
76
" org.scalameta" %% " munit" % munit % Test ,
76
- " org.scalameta" %% " munit-scalacheck" % munit % Test ,
77
+ " org.scalameta" %% " munit-scalacheck" % munitScalaCheck % Test ,
77
78
" org.http4s" %% " http4s-circe" % http4sVersion % Test ,
78
79
" 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
80
81
),
82
+ libraryDependencySchemes += " org.typelevel" %% " munit-cats-effect" % VersionScheme .Always , // "early-semver",
81
83
libraryDependencies ++= nativeNettyModules,
82
84
mimaBinaryIssueFilters ++= Seq (
83
85
ProblemFilters .exclude[IncompatibleResultTypeProblem ](
@@ -116,8 +118,9 @@ lazy val client = project
116
118
" com.github.bbottema" % " java-socks-proxy-server" % " 4.1.0" % Test ,
117
119
" org.scalameta" %% " munit" % munit % Test ,
118
120
" 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
120
122
),
123
+ libraryDependencySchemes += " org.typelevel" %% " munit-cats-effect" % VersionScheme .Always , // "early-semver",
121
124
libraryDependencies ++= nativeNettyModules,
122
125
mimaBinaryIssueFilters ++= Seq (
123
126
ProblemFilters .exclude[Problem ](" org.http4s.netty.client.Http4sChannelPoolMap" ),
0 commit comments