Skip to content

Commit

Permalink
Release 1.7.2 (#355)
Browse files Browse the repository at this point in the history
* Release 1.7.2


Signed-off-by: Lloyd <[email protected]>
  • Loading branch information
lloydmeta authored Dec 4, 2022
1 parent 7562817 commit 74de3eb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,12 @@ lazy val enumeratumScalacheck = crossProject(JSPlatform, JVMPlatform, NativePlat
}
}
)
.jvmSettings(
crossScalaVersions := scalaVersionsAll
)
.nativeSettings(
crossScalaVersions := scalaVersionsAll.filter(_ != scala_2_11Version)
)

lazy val enumeratumScalacheckJs = enumeratumScalacheck.js
.configure(configureWithLocal(coreJS, "compile->compile;test->test"))
Expand Down Expand Up @@ -655,7 +661,7 @@ lazy val enumeratumDoobie =
.settings(testSettings)
.settings(
crossScalaVersions := scalaVersionsAll,
version := "1.7.3-SNAPSHOT",
version := "1.7.4-SNAPSHOT",
libraryDependencies += {
val ver = {
if (scalaBinaryVersion.value == "2.11") {
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.1"
val head = "1.7.2-SNAPSHOT"
val stable = "1.7.2"
val head = "1.7.3-SNAPSHOT"
}

object Macros {
val stable = "1.6.2"
val head = "1.6.3-SNAPSHOT"
val stable = "1.6.3"
val head = "1.6.4-SNAPSHOT"
}

}

0 comments on commit 74de3eb

Please sign in to comment.