Skip to content

Commit 158c9c8

Browse files
committed
sbt 2.0.0-RC9
1 parent 57e24f4 commit 158c9c8

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
matrix:
1010
include:
1111
- os: macos-latest
12-
java: 8
12+
java: 17
1313
distribution: zulu
1414
scala: 3.x
1515
- os: ubuntu-latest
16-
java: 8
16+
java: 17
1717
distribution: zulu
1818
scala: 3.x
1919
- os: ubuntu-latest

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/setup-java@v5
1515
with:
1616
distribution: 'temurin'
17-
java-version: '8'
17+
java-version: '17'
1818
cache: 'sbt'
1919

2020
- name: Publish artifacts

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ThisBuild / version := {
66
if (orig.endsWith("-SNAPSHOT")) "0.11.0-SNAPSHOT"
77
else orig
88
}
9-
val scala3 = "3.7.2"
9+
val scala3 = "3.8.1"
1010
ThisBuild / scalaVersion := scala3
1111

1212
lazy val root = (project in file("."))
@@ -15,7 +15,7 @@ lazy val root = (project in file("."))
1515
name := "sbt-buildinfo",
1616
scalacOptions := {
1717
scalaBinaryVersion.value match {
18-
case "2.12" => Seq("-Xsource:3", "-Xfatal-warnings", "-unchecked", "-deprecation", "-feature", "-language:implicitConversions")
18+
case "2.12" => Seq("-Xsource:3", "-Xfatal-warnings", "-unchecked", "-deprecation", "-feature", "-language:implicitConversions", "-release:8")
1919
case _ => Seq("-Vdebug")
2020
}
2121
},
@@ -32,13 +32,13 @@ lazy val root = (project in file("."))
3232
(pluginCrossBuild / sbtVersion) := {
3333
scalaBinaryVersion.value match {
3434
case "2.12" => "1.5.8"
35-
case _ => "2.0.0-RC2"
35+
case _ => "2.0.0-RC9"
3636
}
3737
},
3838
scriptedSbt := {
3939
scalaBinaryVersion.value match {
4040
case "2.12" => "1.10.7"
41-
case _ => "2.0.0-RC2"
41+
case _ => (pluginCrossBuild / sbtVersion).value
4242
}
4343
},
4444
)

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.11.4
1+
sbt.version=1.12.3

0 commit comments

Comments
 (0)