Skip to content

Commit

Permalink
core v1.5.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydmeta committed Jan 4, 2017
1 parent b311f88 commit 2e5c5de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ lazy val macros = crossProject
includeTestSrcs = false): _*)
.settings(
name := "enumeratum-macros",
version := Versions.Macros.stable,
version := Versions.Macros.head,
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value
)
Expand All @@ -106,7 +106,7 @@ lazy val core = crossProject
.in(file("enumeratum-core"))
.settings(
name := "enumeratum",
version := Versions.Core.head,
version := Versions.Core.stable,
libraryDependencies += "com.beachape" %% "enumeratum-macros" % Versions.Macros.stable
)
.settings(testSettings: _*)
Expand Down
4 changes: 2 additions & 2 deletions project/Versions.scala
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
object Versions {

object Core {
val stable = "1.5.4"
val head = "1.5.5-SNAPSHOT"
val stable = "1.5.5"
val head = "1.5.6-SNAPSHOT"
}

object Macros {
Expand Down

0 comments on commit 2e5c5de

Please sign in to comment.