Check mima against 2.5.31 (#28857)

This commit is contained in:
Arnout Engelen 2020-04-27 16:11:32 +02:00 committed by GitHub
parent f520ca7b7a
commit 2db52a06ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ import com.typesafe.tools.mima.plugin.MimaPlugin.autoImport._
object MiMa extends AutoPlugin {
private val latestPatchOf25 = 29
private val latestPatchOf25 = 31
private val latestPatchOf26 = 4
override def requires = MimaPlugin
@ -40,7 +40,9 @@ object MiMa extends AutoPlugin {
// https://github.com/scala/bug/issues/11207 produced many more
// static methods than expected. These are hard to filter out, so
// we exclude it here and rely on the checks for 2.5.17 and 2.5.19.
expandVersions(2, 5, ((firstPatchOf25 to latestPatchOf25).toSet - 18).toList)
// Additionally, 2.5.30 had some problems related to
// https://github.com/akka/akka/issues/28807
expandVersions(2, 5, ((firstPatchOf25 to latestPatchOf25).toSet - 18 - 30).toList)
} else {
Nil
}