Skip to content

Commit

Permalink
Migrate from Scala native 0.4 to 0.5 (#403)
Browse files Browse the repository at this point in the history
* Migrate from Scala native 0.4 to 0.5

* Bump SJS

* Bump circe

---------

Co-authored-by: Mateusz Kubuszok <[email protected]>
  • Loading branch information
kubukoz and MateuszKubuszok authored Oct 4, 2024
1 parent 10a084d commit 657ad78
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ lazy val scalaVersionsAll = Seq(scala_2_12Version, scala_2_13Version, scala_3Ve

lazy val theScalaVersion = scala_2_12Version

lazy val scalaTestVersion = "3.2.16"
lazy val scalaTestVersion = "3.2.19"

lazy val baseProjectRefs =
Seq(macrosJS, macrosJVM, macrosNative, coreJS, coreJVM, coreNative, coreJVMTests).map(
Expand Down Expand Up @@ -343,7 +343,7 @@ lazy val enumeratumCirce = crossProject(JSPlatform, JVMPlatform, NativePlatform)
name := "enumeratum-circe",
version := Versions.Core.head,
libraryDependencies ++= Seq(
"io.circe" %%% "circe-core" % "0.14.3",
"io.circe" %%% "circe-core" % "0.14.10",
scalaXmlTest
),
libraryDependencies ++= {
Expand Down Expand Up @@ -461,7 +461,7 @@ lazy val enumeratumScalacheck = crossProject(JSPlatform, JVMPlatform, NativePlat
version := Versions.Core.head,
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= {
val (ver, mod, ver2) = ("1.17.0", "scalacheck-1-17", "3.2.16.0")
val (ver, mod, ver2) = ("1.18.0", "scalacheck-1-18", "3.2.19.0")

Seq(
"org.scalacheck" %%% "scalacheck" % ver,
Expand Down Expand Up @@ -606,7 +606,7 @@ lazy val enumeratumCats = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.settings(
name := "enumeratum-cats",
version := Versions.Core.head,
libraryDependencies += "org.typelevel" %%% "cats-core" % "2.9.0",
libraryDependencies += "org.typelevel" %%% "cats-core" % "2.12.0",
libraryDependencies += scalaXmlTest,
libraryDependencies ++= {
if (useLocalVersion) {
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ addSbtPlugin("com.github.tkawachi" % "sbt-doctest" % "0.10.0")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")

addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.14")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.4")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")

addSbtPlugin(("org.scoverage" % "sbt-scoverage" % "2.0.8").exclude("org.scala-lang.modules", "*"))

0 comments on commit 657ad78

Please sign in to comment.