Skip to content

Commit

Permalink
Bump sbt to 1.10.2 / Scala 2.13 to 2.13.14
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-lee committed Sep 25, 2024
1 parent ee42152 commit 13d7843
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docusaurus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
scala:
- { version: "2.13.6", binary-version: "2.13", java-version: "11", java-distribution: "temurin" }
- { version: "2.13.14", binary-version: "2.13", java-version: "11", java-distribution: "temurin" }
node:
- { version: "18.13.0" }

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
scala:
- { name: "Scala 2", version: "2.12.13", binary-version: "2.12", java-version: "[email protected]" }
- { name: "Scala 2", version: "2.13.5", binary-version: "2.13", java-version: "[email protected]" }
- { name: "Scala 2", version: "2.13.10", binary-version: "2.13", java-version: "[email protected]" }
- { name: "Scala 3", version: "3.1.3", binary-version: "3", java-version: "[email protected]" }

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-publish-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
scala:
- { version: "2.13.6", binary-version: "2.13", java-version: "11", java-distribution: "temurin" }
- { version: "2.13.10", binary-version: "2.13", java-version: "11", java-distribution: "temurin" }
node:
- { version: "18.13.0" }

Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ lazy val docs = (project in file("generated-docs"))
.enablePlugins(MdocPlugin, DocusaurPlugin, ScalaUnidocPlugin)
.settings(
name := "docs",
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.13.2" cross CrossVersion.full),
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.13.3" cross CrossVersion.full),
mdocVariables := Map(
"VERSION" -> {
import sys.process._
Expand Down Expand Up @@ -243,13 +243,13 @@ lazy val compilationSettings = Seq(
Seq.empty[ModuleID]
else
Seq(
compilerPlugin("org.typelevel" %% "kind-projector" % "0.13.2" cross CrossVersion.full),
compilerPlugin("org.typelevel" %% "kind-projector" % "0.13.3" cross CrossVersion.full),
)
),
)

lazy val props = new {
val ProjectScalaVersion = "2.13.5"
val ProjectScalaVersion = "2.13.10"
val CrossScalaVersions = Seq("2.12.13", ProjectScalaVersion, "3.1.3")

val PortableScalaReflectVersion = "1.1.1"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.9
sbt.version=1.10.2
5 changes: 3 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1")

addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.4")
addSbtPlugin("io.kevinlee" % "sbt-docusaur" % "0.16.0")
Expand Down

0 comments on commit 13d7843

Please sign in to comment.