From acd12b0b25d82a97c6de161f5befb34866653cb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Leuth=C3=A4user?= <1417198+max-leuthaeuser@users.noreply.github.com> Date: Fri, 30 Jan 2026 09:44:47 +0100 Subject: [PATCH] Bump version for next release --- build.sbt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index bf94c187..e6f0580c 100644 --- a/build.sbt +++ b/build.sbt @@ -11,8 +11,9 @@ addCommandAlias("format", ";scalafmtAll;scalafmtSbt") lazy val noPublishSettings = Seq(publish := {}, publishLocal := {}, publishArtifact := false) ThisBuild / compile / javacOptions ++= Seq("-Xlint", "--release=11") ++ { + // Scala >= 3.8 requires at least SDK >= 17 for compilation and execution val javaVersion = sys.props("java.specification.version").toFloat - assert(javaVersion.toInt >= 13, s"this build requires JDK13+ - you're using $javaVersion") + assert(javaVersion.toInt >= 17, s"this build requires JDK17+ - you're using $javaVersion") Nil } @@ -39,7 +40,7 @@ lazy val root = (project in file(".")) .aggregate(core, tests, examples) lazy val commonSettings = Seq( - version := "3.2", + version := "3.3", libraryDependencies ++= lib.coreDependencies, dependencyOverrides ++= lib.coreDependenciesOverrides, updateOptions := updateOptions.value.withCachedResolution(true),