From 5e7662bf12a11ab2c5c8354ba5a32c3b6142c23b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 5 Sep 2026 02:28:03 +0000 Subject: [PATCH] Update scala-library to 3.9.0 --- build.sbt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 5eac17eb..23c2e5ec 100644 --- a/build.sbt +++ b/build.sbt @@ -52,7 +52,7 @@ val commonSettings = Sonatype.sonatypeSettings ++ releaseSettings ++ Seq( name := "ratatool", description := "A tool for random data sampling and generation", scalaVersion := "2.12.21", - crossScalaVersions := Seq(scalaVersion.value, "2.13.18"), + crossScalaVersions := Seq(scalaVersion.value, "3.9.0"), javaOptions := JavaOptions.defaults(javaMajorVersion), scalacOptions ++= Seq("-target:8", "-deprecation", "-feature", "-unchecked", "-Yrangepos"), scalacOptions ++= { @@ -116,8 +116,13 @@ lazy val releaseSettings = Seq( publishMavenStyle := true, Test / publishArtifact := false, publishTo := { - val centralSnapshots = "https://central.sonatype.com/repository/maven-snapshots/" - val staging = Some(Resolver.file("local-staging", (ThisBuild / baseDirectory).value / "target" / "sonatype-staging" / version.value)) + val centralSnapshots = "https://central.sonatype.com/repository/maven-snapshots/" + val staging = Some( + Resolver.file( + "local-staging", + (ThisBuild / baseDirectory).value / "target" / "sonatype-staging" / version.value + ) + ) if (isSnapshot.value) Some("central-snapshots" at centralSnapshots) else staging },