Skip to content

Commit

Permalink
Set Back version since we are still compat
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherDavenport committed Apr 12, 2023
1 parent c90bce9 commit af15433
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.typesafe.tools.mima.core._

ThisBuild / tlBaseVersion := "0.5" // your current series x.y

ThisBuild / organization := "io.chrisdavenport"
Expand Down Expand Up @@ -28,6 +30,7 @@ ThisBuild / licenses := Seq("Apache-2.0" -> url("https://www.apache.org/licenses
lazy val `circuit` = tlCrossRootProject
.aggregate(core)


lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.crossType(CrossType.Pure)
.in(file("core"))
Expand All @@ -38,8 +41,13 @@ lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
"org.typelevel" %%% "cats-effect" % catsEffectV,
"org.typelevel" %%% "munit-cats-effect" % "2.0.0-M3" % Test,
),
mimaBinaryIssueFilters := Seq(
ProblemFilters.exclude[DirectMissingMethodProblem]("io.chrisdavenport.circuit.CircuitBreaker#SyncCircuitBreaker.this")
),
).jsSettings(
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule)},
).nativeSettings(
tlVersionIntroduced := List("2.12", "2.13", "3").map(_ -> "0.5.1").toMap
)

lazy val site = project.in(file("site"))
Expand Down

0 comments on commit af15433

Please sign in to comment.