From e0a28aae8d4896cd2ee6233f274c2098a0210300 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 25 Apr 2026 16:15:10 +0000 Subject: [PATCH] Update scala-library to 2.13.18 --- build.sbt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.sbt b/build.sbt index 58ba2bf..c7c1a3c 100644 --- a/build.sbt +++ b/build.sbt @@ -14,7 +14,7 @@ lazy val commonSettings = Seq( organizationName := "Evolution", organizationHomepage := Some(url("https://evolution.com")), scalaVersion := crossScalaVersions.value.head, - crossScalaVersions := Seq("2.13.16", "3.3.5"), + crossScalaVersions := Seq("2.13.18", "3.3.5"), scalacOptsFailOnWarn := crossSettings( scalaVersion.value, if3 = Some(false), @@ -54,14 +54,14 @@ lazy val commonSettings = Seq( url("https://github.com/t3hnar") ) ), - publishTo := Some(Resolver.evolutionReleases), + publishTo := Some(Resolver.evolutionReleases) ) lazy val root = (project in file(".")) .settings( name := "scache-root", publish / skip := true, - publishArtifact := false, + publishArtifact := false ) .aggregate(`cache-adt`, scache) @@ -70,7 +70,7 @@ lazy val `cache-adt` = (project in file("cache-adt")) .settings( name := "cache-adt", description := "Directive ADT for scache", - versionPolicyIntention := Compatibility.BinaryCompatible, + versionPolicyIntention := Compatibility.BinaryCompatible ) lazy val scache = (project in file("scache")) @@ -86,7 +86,7 @@ lazy val scache = (project in file("scache")) `cats-helper`, smetrics, scalatest % Test - ), + ) ) .dependsOn(`cache-adt`)