Skip to content

Commit

Permalink
Dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
durban committed May 23, 2024
1 parent 3f0a15a commit 6c4ee2d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ lazy val dependencies = new {
val jcstressVersion = "0.16" // https://github.com/openjdk/jcstress
val jmhVersion = "1.37" // https://github.com/openjdk/jmh
val jolVersion = "0.17" // https://github.com/openjdk/jol
val scalaJsLocaleVersion = "1.5.1"
val scalaJsLocaleVersion = "1.5.3" // https://github.com/cquiroz/scala-java-locales

val catsKernel = Def.setting("org.typelevel" %%% "cats-kernel" % catsVersion)
val catsCore = Def.setting("org.typelevel" %%% "cats-core" % catsVersion)
Expand All @@ -745,7 +745,6 @@ lazy val dependencies = new {

// JS:
val scalaJsLocale = Def.setting[Seq[ModuleID]](Seq(
// https://github.com/cquiroz/scala-java-locales
"io.github.cquiroz" %%% "scala-java-locales" % scalaJsLocaleVersion,
"io.github.cquiroz" %%% "locales-minimal-en-db" % scalaJsLocaleVersion,
))
Expand All @@ -754,7 +753,7 @@ lazy val dependencies = new {
val scalaStm = Def.setting("org.scala-stm" %%% "scala-stm" % "0.11.1")
val catsStm = Def.setting("io.github.timwspence" %%% "cats-stm" % "0.13.4")
val zioCats = Def.setting("dev.zio" %%% "zio-interop-cats" % "23.1.0.2")
val zioStm = Def.setting("dev.zio" %%% "zio" % "2.1.0")
val zioStm = Def.setting("dev.zio" %%% "zio" % "2.1.1")

val test = Def.setting[Seq[ModuleID]] {
Seq(
Expand All @@ -764,10 +763,10 @@ lazy val dependencies = new {
"org.typelevel" %%% "cats-effect-kernel-testkit" % catsEffectVersion,
"org.typelevel" %%% "cats-effect-testkit" % catsEffectVersion,
catsMtlLaws.value,
"org.typelevel" %%% "munit-cats-effect" % "2.0.0-RC1",
"org.typelevel" %%% "munit-cats-effect" % "2.0.0",
"org.typelevel" %%% "scalacheck-effect" % scalacheckEffectVersion,
"org.typelevel" %%% "scalacheck-effect-munit" % scalacheckEffectVersion,
"org.typelevel" %%% "discipline-munit" % "2.0.0-M3",
"org.typelevel" %%% "discipline-munit" % "2.0.0", // https://github.com/typelevel/discipline-munit
zioCats.value,
)
}
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ addSbtPlugin("net.bzzt" % "sbt-strict-scala-versions" % "0.0.1") // https://gith
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.0") // https://github.com/sbt/sbt-native-packager

ThisBuild / semanticdbEnabled := true
ThisBuild / semanticdbVersion := "4.9.4" // https://github.com/scalameta/scalameta
ThisBuild / semanticdbVersion := "4.9.5" // https://github.com/scalameta/scalameta

0 comments on commit 6c4ee2d

Please sign in to comment.