From 7c0f6b1437715eb8eeef39df16a6e64f542c32a7 Mon Sep 17 00:00:00 2001 From: satorg Date: Tue, 18 Oct 2022 14:07:41 -0700 Subject: [PATCH] add Mima exclusions --- mima.sbt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mima.sbt b/mima.sbt index 6581068fea7..5ea40a10e92 100644 --- a/mima.sbt +++ b/mima.sbt @@ -149,6 +149,10 @@ ThisBuild / mimaBinaryIssueFilters ++= { Seq( exclude[MissingClassProblem]("cats.compat.compat$package"), exclude[MissingClassProblem]("cats.compat.compat$package$") + ) ++ + Seq( // https://github.com/typelevel/cats/pull/4299 + exclude[ReversedMissingMethodProblem]("cats.data.RWSTAlternative1.cats$data$RWSTAlternative1$$super$pure"), + exclude[ReversedMissingMethodProblem]("cats.data.RWSTAlternative1.cats$data$RWSTAlternative1$$super$ap") ) }