Skip to content

Commit 74de3eb

Browse files
authored
Release 1.7.2 (#355)
* Release 1.7.2 Signed-off-by: Lloyd <[email protected]>
1 parent 7562817 commit 74de3eb

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

build.sbt

+7-1
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,12 @@ lazy val enumeratumScalacheck = crossProject(JSPlatform, JVMPlatform, NativePlat
586586
}
587587
}
588588
)
589+
.jvmSettings(
590+
crossScalaVersions := scalaVersionsAll
591+
)
592+
.nativeSettings(
593+
crossScalaVersions := scalaVersionsAll.filter(_ != scala_2_11Version)
594+
)
589595

590596
lazy val enumeratumScalacheckJs = enumeratumScalacheck.js
591597
.configure(configureWithLocal(coreJS, "compile->compile;test->test"))
@@ -655,7 +661,7 @@ lazy val enumeratumDoobie =
655661
.settings(testSettings)
656662
.settings(
657663
crossScalaVersions := scalaVersionsAll,
658-
version := "1.7.3-SNAPSHOT",
664+
version := "1.7.4-SNAPSHOT",
659665
libraryDependencies += {
660666
val ver = {
661667
if (scalaBinaryVersion.value == "2.11") {

project/Versions.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
object Versions {
22

33
object Core {
4-
val stable = "1.7.1"
5-
val head = "1.7.2-SNAPSHOT"
4+
val stable = "1.7.2"
5+
val head = "1.7.3-SNAPSHOT"
66
}
77

88
object Macros {
9-
val stable = "1.6.2"
10-
val head = "1.6.3-SNAPSHOT"
9+
val stable = "1.6.3"
10+
val head = "1.6.4-SNAPSHOT"
1111
}
1212

1313
}

0 commit comments

Comments
 (0)