From 3405a12040a7c97e9d179cc15d36bfe32a3ac168 Mon Sep 17 00:00:00 2001 From: Ondra Pelech Date: Fri, 29 Dec 2023 14:54:39 +0100 Subject: [PATCH] fix 5 --- build.sbt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.sbt b/build.sbt index fa7d99cb..5005088d 100644 --- a/build.sbt +++ b/build.sbt @@ -1,3 +1,5 @@ +import com.typesafe.tools.mima.core._ + ThisBuild / tlBaseVersion := "0.5" // your current series x.y ThisBuild / organization := "io.chrisdavenport" @@ -43,6 +45,8 @@ val munitCatsEffectV = "1.0.7" // General Settings lazy val commonSettings = Seq( + mimaBinaryIssueFilters := List({(_: Problem) => false}), // TODO: remove this once switched to next major version + javacOptions ++= Seq("--release", "8"), scalacOptions --= List("-source", "future", "-Xfatal-warnings"),