Skip to content

Commit e2e7332

Browse files
committed
sbt + sbt-ci-release 1.11.0
1 parent 0332ad4 commit e2e7332

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
cmd: |
4646
if [ "$CACHE_HIT_COURSIER" = "false" ]; then
4747
sbt +update # Runs with adoptium:8 (default)
48-
# sbt --sbt-version 1.11.0-RC2 +update # If we run scripted tests with multiple sbt versions, we could init that sbt installs here
48+
# sbt --sbt-version 1.11.0 +update # If we run scripted tests with multiple sbt versions, we could init that sbt installs here
4949
sbt +mimaPreviousClassfiles # Fetches previous artifacts
5050
cd documentation && sbt +update && cd .. # Fetches dependencies of the documentation project
5151
sbt -java-home `cs java-home --jvm adoptium:17` exit # Init sbt with new JVM that will be downloaded
@@ -169,7 +169,7 @@ jobs:
169169
scala: 2.13.x, 3.x
170170
add-dimensions: >-
171171
{
172-
"sbt": [ "1.11.0-RC2" ],
172+
"sbt": [ "1.11.0" ],
173173
"sbt_steps": [ "*1of3", "*2of3", "*3of3" ]
174174
}
175175
exclude: >-
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
22

33
# sync with project/build.properties
4-
sbt.version=1.11.0-RC2
4+
sbt.version=1.11.0

project/PlaySbtBuildBase.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ object PlaySbtBuildBase extends AutoPlugin {
1313
override def projectSettings = Seq(
1414
scalaVersion := ScalaVersions.scala212,
1515
crossScalaVersions := Seq(ScalaVersions.scala212),
16-
pluginCrossBuild / sbtVersion := SbtVersions.sbt110,
16+
pluginCrossBuild / sbtVersion := SbtVersions.sbt111,
1717
compile / javacOptions ++= Seq("--release", "17"),
1818
doc / javacOptions := Seq("-source", "17")
1919
)

project/Versions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ object ScalaVersions {
99
}
1010

1111
object SbtVersions {
12-
val sbt110 = "1.11.0-RC2"
12+
val sbt111 = "1.11.0"
1313
}

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
22

33
# sync with documentation/project/build.properties
4-
sbt.version=1.11.0-RC2
4+
sbt.version=1.11.0

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % sbtJavaFormat
3131
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % sbtJmh)
3232
addSbtPlugin("de.heikoseeberger" % "sbt-header" % sbtHeader)
3333
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % scalafmt)
34-
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.0-RC3")
34+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.0")
3535

3636
addSbtPlugin("nl.gn0s1s" % "sbt-pekko-version-check" % "0.0.7")
3737

0 commit comments

Comments
 (0)