Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jurisk committed Oct 12, 2024
1 parent 47cd00f commit cae6009
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
18 changes: 9 additions & 9 deletions scala2/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.typelevel.scalacoptions.ScalacOptions

ThisBuild / version := "0.1.0-SNAPSHOT"

ThisBuild / scalaVersion := "2.13.13"
ThisBuild / scalaVersion := "2.13.15"

ThisBuild / semanticdbEnabled := true // For ScalaFix
ThisBuild / semanticdbVersion := scalafixSemanticdb.revision // For ScalaFix
Expand All @@ -13,16 +13,16 @@ lazy val root = (project in file("."))
name := "advent-of-code-scala2",
scalacOptions ++= Seq("-unchecked", "-deprecation"),
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "2.10.0",
"org.typelevel" %% "cats-effect" % "3.5.3",
"org.typelevel" %% "mouse" % "1.2.3",
"org.typelevel" %% "cats-parse" % "0.3.9",
"co.fs2" %% "fs2-core" % "3.9.4",
"org.typelevel" %% "cats-core" % "2.12.0",
"org.typelevel" %% "cats-effect" % "3.5.4",
"org.typelevel" %% "mouse" % "1.3.1",
"org.typelevel" %% "cats-parse" % "1.0.0",
"co.fs2" %% "fs2-core" % "3.10.2",
"dev.optics" %% "monocle-core" % "3.2.0",
"dev.optics" %% "monocle-macro" % "3.2.0",
"tools.aqua" % "z3-turnkey" % "4.12.2.1",
"tools.aqua" % "z3-turnkey" % "4.13.0",
"org.typelevel" %% "cats-effect-testing-scalatest" % "1.5.0" % Test,
"org.scalatest" %% "scalatest" % "3.2.18", // Not "test" on purpose as it is more convenient to keep everything together
"org.scalatest" %% "scalatest" % "3.2.19", // Not "test" on purpose as it is more convenient to keep everything together
),
tpolecatExcludeOptions ++=
Set(
Expand All @@ -37,7 +37,7 @@ lazy val root = (project in file("."))
)

ThisBuild / scalafixDependencies ++= List(
"org.typelevel" %% "typelevel-scalafix" % "0.2.0",
"org.typelevel" %% "typelevel-scalafix" % "0.3.0",
"com.github.vovapolu" %% "scaluzzi" % "0.1.23",
)

Expand Down
2 changes: 1 addition & 1 deletion scala2/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
4 changes: 2 additions & 2 deletions scala2/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")

addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.0")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2")

addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0")
8 changes: 4 additions & 4 deletions scala3/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ lazy val root = project
version := "0.1.0",
scalacOptions ++= Seq(
"-language:postfixOps",
"-Ykind-projector",
"-Xkind-projector",
"-source", "3.3"
),
scalaVersion := "3.3.1",
scalaVersion := "3.5.1",
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % "3.5.2",
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.typelevel" %% "cats-effect" % "3.5.4",
"org.scalameta" %% "munit" % "1.0.0" % Test,
),
)
2 changes: 1 addition & 1 deletion scala3/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.9.7
sbt.version = 1.10.2

0 comments on commit cae6009

Please sign in to comment.