Skip to content

Commit cae6009

Browse files
committed
Bump versions
1 parent 47cd00f commit cae6009

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

scala2/build.sbt

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import org.typelevel.scalacoptions.ScalacOptions
22

33
ThisBuild / version := "0.1.0-SNAPSHOT"
44

5-
ThisBuild / scalaVersion := "2.13.13"
5+
ThisBuild / scalaVersion := "2.13.15"
66

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

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

scala2/project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.9.9
1+
sbt.version = 1.10.2

scala2/project/plugins.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
22

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

5-
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.0")
5+
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0")

scala3/build.sbt

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ lazy val root = project
55
version := "0.1.0",
66
scalacOptions ++= Seq(
77
"-language:postfixOps",
8-
"-Ykind-projector",
8+
"-Xkind-projector",
99
"-source", "3.3"
1010
),
11-
scalaVersion := "3.3.1",
11+
scalaVersion := "3.5.1",
1212
libraryDependencies ++= Seq(
13-
"org.typelevel" %% "cats-effect" % "3.5.2",
14-
"org.scalameta" %% "munit" % "0.7.29" % Test,
13+
"org.typelevel" %% "cats-effect" % "3.5.4",
14+
"org.scalameta" %% "munit" % "1.0.0" % Test,
1515
),
1616
)

scala3/project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.9.7
1+
sbt.version = 1.10.2

0 commit comments

Comments
 (0)