Skip to content

Commit

Permalink
1.6 release
Browse files Browse the repository at this point in the history
Signed-off-by: Lloyd <lloydmeta@gmail.com>
  • Loading branch information
lloydmeta committed May 2, 2020
1 parent e0bc486 commit 436dad2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
32 changes: 16 additions & 16 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ lazy val macros = crossProject(JSPlatform, JVMPlatform)
.settings(withCompatUnmanagedSources(jsJvmCrossProject = true, includeTestSrcs = false): _*)
.settings(
name := "enumeratum-macros",
version := Versions.Macros.head,
version := Versions.Macros.stable,
crossScalaVersions := scalaVersionsAll, // eventually move this to aggregateProject once more 2.13 libs are out
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value
Expand All @@ -181,11 +181,11 @@ lazy val core = crossProject(JSPlatform, JVMPlatform)
.settings(commonWithPublishSettings: _*)
.settings(
name := "enumeratum",
version := Versions.Core.head,
version := Versions.Core.stable,
crossScalaVersions := scalaVersionsAll,
// libraryDependencies += "com.beachape" %% "enumeratum-macros" % Versions.Macros.stable
libraryDependencies += "com.beachape" %% "enumeratum-macros" % Versions.Macros.stable
)
.dependsOn(macros) // used for testing macros
// .dependsOn(macros) // used for testing macros
lazy val coreJS = core.js
lazy val coreJVM = core.jvm

Expand All @@ -198,7 +198,7 @@ lazy val enumeratumTest = crossProject(JSPlatform, JVMPlatform)
.settings(commonWithPublishSettings: _*)
.settings(
name := "enumeratum-test",
version := Versions.Core.head,
version := Versions.Core.stable,
crossScalaVersions := scalaVersionsAll,
libraryDependencies += {
"com.beachape" %%% "enumeratum" % Versions.Core.stable
Expand Down Expand Up @@ -238,7 +238,7 @@ lazy val enumeratumReactiveMongoBson =
.settings(commonWithPublishSettings: _*)
.settings(testSettings: _*)
.settings(
version := "1.5.17-SNAPSHOT",
version := "1.6.0",
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= Seq(
"org.reactivemongo" %% "reactivemongo-bson-api" % s"$reactiveMongoVersion-noshaded" % Provided,
Expand All @@ -258,7 +258,7 @@ lazy val enumeratumPlayJson = crossProject(JSPlatform, JVMPlatform)
.settings(testSettings: _*)
.settings(
name := "enumeratum-play-json",
version := s"1.5.18-SNAPSHOT",
version := "1.6.0",
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= {
Seq(
Expand All @@ -275,7 +275,7 @@ lazy val enumeratumPlay = Project(id = "enumeratum-play", base = file("enumeratu
.settings(commonWithPublishSettings: _*)
.settings(testSettings: _*)
.settings(
version := s"1.5.18-SNAPSHOT",
version := "1.6.0",
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++=
Seq(
Expand All @@ -296,7 +296,7 @@ lazy val enumeratumCirce = crossProject(JSPlatform, JVMPlatform)
.settings(testSettings: _*)
.settings(
name := "enumeratum-circe",
version := "1.5.24-SNAPSHOT",
version := "1.6.0",
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= {
Seq(
Expand All @@ -317,7 +317,7 @@ lazy val enumeratumArgonaut = crossProject(JSPlatform, JVMPlatform)
.settings(testSettings: _*)
.settings(
name := "enumeratum-argonaut",
version := "1.5.14-SNAPSHOT",
version := "1.6.0",
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= {
Seq(
Expand All @@ -335,7 +335,7 @@ lazy val enumeratumJson4s =
.settings(commonWithPublishSettings: _*)
.settings(testSettings: _*)
.settings(
version := "1.5.16-SNAPSHOT",
version := "1.6.0",
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= Seq(
"org.json4s" %% "json4s-core" % json4sVersion,
Expand All @@ -354,7 +354,7 @@ lazy val enumeratumScalacheck = crossProject(JSPlatform, JVMPlatform)
.settings(testSettings: _*)
.settings(
name := "enumeratum-scalacheck",
version := "1.5.17-SNAPSHOT",
version := "1.6.0",
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= {
Seq(
Expand All @@ -378,7 +378,7 @@ lazy val enumeratumQuill = crossProject(JSPlatform, JVMPlatform)
.settings(testSettings: _*)
.settings(
name := "enumeratum-quill",
version := "1.5.16-SNAPSHOT",
version := "1.6.0",
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= {
Seq(
Expand All @@ -405,7 +405,7 @@ lazy val enumeratumDoobie =
.settings(testSettings: _*)
.settings(
crossScalaVersions := scalaVersionsAll,
version := "1.5.18-SNAPSHOT",
version := "1.6.0",
libraryDependencies ++= {
Seq(
"com.beachape" %%% "enumeratum" % Versions.Core.stable,
Expand All @@ -419,7 +419,7 @@ lazy val enumeratumSlick =
.settings(commonWithPublishSettings: _*)
.settings(testSettings: _*)
.settings(
version := "1.5.17-SNAPSHOT",
version := "1.6.0",
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= Seq(
"com.typesafe.slick" %% "slick" % theSlickVersion(scalaVersion.value),
Expand All @@ -436,7 +436,7 @@ lazy val enumeratumCats = crossProject(JSPlatform, JVMPlatform)
.settings(testSettings: _*)
.settings(
name := "enumeratum-cats",
version := "1.5.17-SNAPSHOT",
version := "1.6.0",
crossScalaVersions := scalaVersionsAll,
libraryDependencies ++= {
Seq(
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.5.15"
val head = "1.5.16-SNAPSHOT"
val stable = "1.6.0"
val head = "1.6.1-SNAPSHOT"
}

object Macros {
val stable = "1.5.10"
val head = "1.5.11-SNAPSHOT"
val stable = "1.6.0"
val head = "1.6.1-SNAPSHOT"
}

}

0 comments on commit 436dad2

Please sign in to comment.