We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f24b7d commit c217221Copy full SHA for c217221
project/MiMa.scala
@@ -50,7 +50,8 @@ object MiMa extends AutoPlugin {
50
51
val `10.6-versions` = Set(
52
"10.6.0",
53
- "10.6.1"
+ "10.6.1",
54
+ "10.6.2"
55
)
56
57
val pre3Versions = `10.2-versions` ++ `10.4-versions`
@@ -63,8 +64,10 @@ object MiMa extends AutoPlugin {
63
64
override val projectSettings = Seq(
65
mimaPreviousArtifacts := {
66
val versions = {
- if (name.value == "akka-http-jwt") Set.empty // FIXME remove this once we have a release of akka-http-jwt
67
- else if (scalaBinaryVersion.value == "3") post3Versions
+ if (name.value == "akka-http-jwt") {
68
+ // Added in 10.6.2
69
+ `10.6-versions` -- Set("10.6.0", "10.6.1")
70
+ } else if (scalaBinaryVersion.value == "3") post3Versions
71
else pre3Versions ++ post3Versions
72
}
73
0 commit comments