Skip to content

Commit

Permalink
enumeratum 1.7.4 release (#400)
Browse files Browse the repository at this point in the history
* enumeratum 1.7.4 release

Signed-off-by: lloydmeta <[email protected]>
  • Loading branch information
lloydmeta authored Jul 7, 2024
1 parent df708af commit 10a084d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 20 deletions.
25 changes: 9 additions & 16 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ lazy val enumeratumReactiveMongoBson =
version := Versions.Core.head,
crossScalaVersions := scalaVersionsAll,
libraryDependencies += {
"org.reactivemongo" %% "reactivemongo-bson-api" % "1.1.0-RC9" % Provided
"org.reactivemongo" %% "reactivemongo-bson-api" % "1.1.0-RC12" % Provided
},
libraryDependencies += scalaXmlTest,
libraryDependencies ++= {
Expand Down Expand Up @@ -270,10 +270,10 @@ lazy val enumeratumPlayJson = crossProject(JSPlatform, JVMPlatform)
.jsSettings(jsTestSettings)
.settings(
name := "enumeratum-play-json",
version := "1.8.1-SNAPSHOT",
version := "1.8.2-SNAPSHOT",
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= Seq(
"org.playframework" %%% "play-json" % "3.0.0",
"org.playframework" %%% "play-json" % "3.0.4",
scalaXmlTest
),
libraryDependencies ++= {
Expand All @@ -299,11 +299,11 @@ lazy val enumeratumPlay = Project(id = "enumeratum-play", base = file("enumeratu
.settings(commonWithPublishSettings)
.settings(testSettings)
.settings(
version := "1.8.1-SNAPSHOT",
version := "1.8.2-SNAPSHOT",
// Play do not support 2.12 (default from common settings)
scalaVersion := scala_2_13Version,
crossScalaVersions := Seq(scala_2_13Version, scala_3Version),
libraryDependencies += ("org.playframework" %% "play" % "3.0.0")
libraryDependencies += ("org.playframework" %% "play" % "3.0.4")
.exclude("org.scala-lang.modules", "*"),
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "7.0.0" % Test,
libraryDependencies ++= {
Expand Down Expand Up @@ -387,14 +387,7 @@ lazy val enumeratumArgonaut = crossProject(JSPlatform, JVMPlatform)
version := Versions.Core.head,
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= {
val ver: String = {
if (scalaBinaryVersion.value == "3") {
"6.3.8"
} else {
"6.2.5"
}
}

val ver: String = "6.3.9"
Seq(
"io.argonaut" %%% "argonaut" % ver,
scalaXmlTest
Expand Down Expand Up @@ -424,7 +417,7 @@ lazy val enumeratumJson4s =
version := Versions.Core.head,
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= {
val ver = "4.0.3"
val ver = "4.0.7"

Seq(
"org.json4s" %% "json4s-core" % ver,
Expand Down Expand Up @@ -564,7 +557,7 @@ lazy val enumeratumDoobie =
.settings(testSettings)
.settings(
crossScalaVersions := scalaVersionsAll,
version := "1.7.6-SNAPSHOT",
version := "1.7.7-SNAPSHOT",
libraryDependencies += "org.tpolecat" %% "doobie-core" % "1.0.0-RC5",
libraryDependencies += scalaXmlTest,
libraryDependencies ++= {
Expand All @@ -582,7 +575,7 @@ lazy val enumeratumSlick =
.settings(commonWithPublishSettings)
.settings(testSettings)
.settings(
version := "1.7.7-SNAPSHOT",
version := "1.7.8-SNAPSHOT",
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= Seq(
("com.typesafe.slick" %% "slick" % "3.5.1"),
Expand Down
8 changes: 4 additions & 4 deletions project/Versions.scala
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
object Versions {

object Core {
val stable = "1.7.3"
val head = "1.7.4-SNAPSHOT"
val stable = "1.7.4"
val head = "1.7.5-SNAPSHOT"
}

object Macros {
val stable = "1.6.4"
val head = "1.6.5-SNAPSHOT"
val stable = "1.6.5"
val head = "1.6.6-SNAPSHOT"
}

}

0 comments on commit 10a084d

Please sign in to comment.