Skip to content

Commit f015756

Browse files
committed
Bunch update dependencies
1 parent f6f2c5b commit f015756

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

build.sbt

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
import com.typesafe.tools.mima.core._
22

33
val scala212 = "2.12.18"
4-
val scala213 = "2.13.10"
5-
val scala3 = "3.2.2"
4+
val scala213 = "2.13.12"
5+
val scala3 = "3.3.1"
66

7-
val scalatestVersion = "3.2.15"
7+
val scalatestVersion = "3.2.17"
88
val scalacheckVersion = "1.17.0"
99

10+
ThisBuild / tlJdkRelease := Some(11)
1011
ThisBuild / scalaVersion := scala213
11-
ThisBuild / crossScalaVersions := Seq(scala212, scala213, scala3)
12-
ThisBuild / tlSkipIrrelevantScalas := true
13-
14-
ThisBuild / tlSonatypeUseLegacyHost := true
12+
ThisBuild / crossScalaVersions := Seq(elems = scala212, scala213, scala3)
1513

1614
ThisBuild / tlFatalWarnings := false
1715

@@ -41,7 +39,7 @@ lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
4139
name := "diffson-core",
4240
libraryDependencies ++= Seq(
4341
"org.scala-lang.modules" %%% "scala-collection-compat" % "2.11.0",
44-
"org.typelevel" %%% "cats-core" % "2.9.0",
42+
"org.typelevel" %%% "cats-core" % "2.10.0",
4543
"org.scalatest" %%% "scalatest" % scalatestVersion % Test,
4644
"org.scalacheck" %%% "scalacheck" % scalacheckVersion % Test
4745
),
@@ -73,11 +71,11 @@ lazy val playJson = crossProject(JSPlatform, JVMPlatform)
7371
.in(file("playJson"))
7472
.settings(commonSettings: _*)
7573
.settings(name := "diffson-play-json",
76-
libraryDependencies += "com.typesafe.play" %%% "play-json" % "2.10.0-RC6",
74+
libraryDependencies += "org.playframework" %%% "play-json" % "3.0.1",
7775
tlVersionIntroduced := Map("3" -> "4.3.0"))
7876
.dependsOn(core, testkit % Test)
7977

80-
val circeVersion = "0.14.5"
78+
val circeVersion = "0.14.6"
8179
lazy val circe = crossProject(JSPlatform, JVMPlatform, NativePlatform)
8280
.crossType(CrossType.Full)
8381
.in(file("circe"))

project/build.properties

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

project/plugins.sbt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.20")
2-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.1")
3-
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.12")
4-
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.1")
5-
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.4")
1+
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.6.3")
2+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0")
3+
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.16")
4+
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.6")

0 commit comments

Comments
 (0)