Skip to content

Commit 997be17

Browse files
committed
Bump things to the point where it actually compiles
- bump `sbt` to 1.11.7 (was 1.7.1) - bump `sbt-mdoc` to 2.8.0 (was 2.3.3) - bump `sbt-ci-release` to 1.11.2 (was 1.5.10) - bump `sbt-scalafix` to 0.14.4 (was 0.10.1) - bump Scala 2.12 to 2.12.20 (was 2.12.15) - bump Scala 2.13 to 2.13.17 (was 2.13.6) - bump Scala 3 to 3.3.7 (was 3.0.2)
1 parent 2fe0f0a commit 997be17

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

build.sbt

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ inThisBuild(
1616
)
1717
)
1818

19-
lazy val scala212 = "2.12.15"
20-
lazy val scala213 = "2.13.6"
21-
lazy val scala3 = "3.0.2"
19+
lazy val scala212 = "2.12.20"
20+
lazy val scala213 = "2.13.17"
21+
lazy val scala3 = "3.3.7"
2222

2323
ThisBuild / scalaVersion := scala213
2424
ThisBuild / scalafixDependencies += organizeImports
@@ -46,10 +46,11 @@ lazy val root = project
4646
}
4747
}
4848
)
49-
.settings(
50-
sonatypeCredentialHost := "s01.oss.sonatype.org",
51-
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
52-
)
49+
// TODO: reconfigure sonatype publishing
50+
// .settings(
51+
// sonatypeCredentialHost := "s01.oss.sonatype.org",
52+
// sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
53+
// )
5354

5455
lazy val docs = project
5556
.in(file("python-docs"))

project/build.properties

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

project/plugins.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.3")
2-
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
3-
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.1")
1+
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.8.0")
2+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2")
3+
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.4")

0 commit comments

Comments
 (0)