From 67aadbda79ea53d7a142bc5ae222a561578f315f Mon Sep 17 00:00:00 2001 From: Darren Gibson Date: Fri, 19 Jul 2024 17:07:39 -0500 Subject: [PATCH] Add tlVersionIntroduced for mima --- build.sbt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.sbt b/build.sbt index 5b95094..0350e3c 100644 --- a/build.sbt +++ b/build.sbt @@ -57,6 +57,10 @@ lazy val mtl = crossProject(JVMPlatform) libraryDependencies ++= Seq( "org.typelevel" %% "cats-mtl" % "1.4.0" ), + tlVersionIntroduced := Map( + "2.13" -> "0.5.1", + "3" -> "0.5.1", + ), ) .dependsOn(core)