Skip to content

Commit

Permalink
1.5.14 release (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydmeta committed Dec 15, 2019
1 parent 709ad1d commit 2c9b731
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Expand Up @@ -205,9 +205,9 @@ lazy val core = crossProject(JSPlatform, JVMPlatform)
name := "enumeratum",
version := Versions.Core.head,
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 Down
8 changes: 4 additions & 4 deletions project/Versions.scala
@@ -1,13 +1,13 @@
object Versions {

object Core {
val stable = "1.5.13"
val head = "1.5.14-SNAPSHOT"
val stable = "1.5.14"
val head = "1.5.15-SNAPSHOT"
}

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

}

0 comments on commit 2c9b731

Please sign in to comment.