Skip to content

Commit

Permalink
build: Post 10.6.2 release stuff (#4380)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanandren authored Apr 17, 2024
1 parent 9f24b7d commit c217221
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions project/MiMa.scala
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ object MiMa extends AutoPlugin {

val `10.6-versions` = Set(
"10.6.0",
"10.6.1"
"10.6.1",
"10.6.2"
)

val pre3Versions = `10.2-versions` ++ `10.4-versions`
Expand All @@ -63,8 +64,10 @@ object MiMa extends AutoPlugin {
override val projectSettings = Seq(
mimaPreviousArtifacts := {
val versions = {
if (name.value == "akka-http-jwt") Set.empty // FIXME remove this once we have a release of akka-http-jwt
else if (scalaBinaryVersion.value == "3") post3Versions
if (name.value == "akka-http-jwt") {
// Added in 10.6.2
`10.6-versions` -- Set("10.6.0", "10.6.1")
} else if (scalaBinaryVersion.value == "3") post3Versions
else pre3Versions ++ post3Versions
}

Expand Down

0 comments on commit c217221

Please sign in to comment.