From 4014f5cce0a4cf8b2e1be09c2f72a5cf3261738b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 13 Sep 2023 22:55:41 +0000 Subject: [PATCH] Update scala-library to 2.13.12 --- build.sbt | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/build.sbt b/build.sbt index 3d20a3f..8ea7479 100644 --- a/build.sbt +++ b/build.sbt @@ -21,11 +21,11 @@ ThisBuild / versionScheme := Some("early-semver") ThisBuild / versionPolicyIntention := Compatibility.BinaryAndSourceCompatible ThisBuild / versionPolicyIgnoredInternalDependencyVersions := Some( "^\\d+\\.\\d+\\.\\d+\\+\\d+".r -) +) lazy val commonSettings = Seq( - scalaVersion := "2.13.8", - crossScalaVersions := Seq("2.12.15", "2.13.8", "3.0.1"), + scalaVersion := "2.13.12", + crossScalaVersions := Seq("2.12.15", "2.13.12", "3.0.1"), parallelExecution in Test := false, mimaPreviousArtifacts := (CrossVersion.partialVersion( scalaVersion.value @@ -110,9 +110,10 @@ lazy val coreJS = project ) .enablePlugins(ScalaJSPlugin) - lazy val root = project.in(file(".")). - aggregate(core, coreJS). - settings( +lazy val root = project + .in(file(".")) + .aggregate(core, coreJS) + .settings( publish := {}, - publishLocal := {}, - ) \ No newline at end of file + publishLocal := {} + )