Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ThisBuild / organization := "com.github.dwickern"

lazy val scala3 = "3.3.5"
lazy val scala3 = "3.3.6"
lazy val scala213 = "2.13.16"
lazy val scala212 = "2.12.20"

Expand All @@ -27,14 +27,14 @@ lazy val nameof = (projectMatrix in file("."))
)
.jvmPlatform(scalaVersions = Seq(scala3), Seq(
libraryDependencies ++= Seq(
"org.typelevel" %% "shapeless3-test" % "3.4.3" % Test,
"org.typelevel" %% "shapeless3-test" % "3.5.0" % Test,
)
))
.jvmPlatform(scalaVersions = Seq(scala213, scala212), Seq(
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value % Provided,
"org.scala-lang" % "scala-compiler" % scalaVersion.value % Provided,
"com.chuusai" %% "shapeless" % "2.3.12" % Test,
"com.chuusai" %% "shapeless" % "2.3.13" % Test,
),
))

Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
logLevel := Level.Warn

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2")
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.10.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2")
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.11.0")
addSbtPlugin("org.jetbrains.scala" % "sbt-ide-settings" % "1.1.2")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.6.4" )
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.7.2" )
Loading