From 5272677c1be9aa0e2d9dfa565df8472b791b39e6 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 20 Aug 2021 22:18:17 +0200 Subject: [PATCH 1/2] Update calev-circe, calev-core to 0.6.0 --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index d0a4d4d5..170aa65f 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -8,7 +8,7 @@ object Dependencies { val BcryptVersion = "0.4" val BetterMonadicForVersion = "0.3.1" val BitpeaceVersion = "0.9.0-M2" - val CalevVersion = "0.5.4" + val CalevVersion = "0.6.0" val CatsParseVersion = "0.3.4" val CirceVersion = "0.14.1" val ClipboardJsVersion = "2.0.6" From 865d4a31727af986bb149cd90760bc3202d6bd0f Mon Sep 17 00:00:00 2001 From: eikek Date: Sat, 21 Aug 2021 11:02:29 +0200 Subject: [PATCH 2/2] Disable eviction warnings regarding calev and fs2-cron-calev The calev-core jar and fs2-cron-calev are compatible, although the minor was increased in the calev project. This can be removed once fs2-cron-calev has been released. --- build.sbt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index f590f452..b4818d8e 100644 --- a/build.sbt +++ b/build.sbt @@ -53,7 +53,11 @@ val sharedSettings = Seq( Compile / console / scalacOptions := (scalacOptions.value.filter(o => !o.contains("-Xlint") && !o.contains("-W"))), Test / console / scalacOptions := - (scalacOptions.value.filter(o => !o.contains("-Xlint") && !o.contains("-W"))) + (scalacOptions.value.filter(o => !o.contains("-Xlint") && !o.contains("-W"))), + libraryDependencySchemes ++= Seq( + "com.github.eikek" %% "calev-core" % VersionScheme.Always, + "com.github.eikek" %% "calev-circe" % VersionScheme.Always + ) ) ++ scalafixSettings val testSettingsMUnit = Seq(