Skip to content

Commit

Permalink
1.5.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydmeta committed Apr 19, 2017
1 parent 92b28ca commit 9aa5bd0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.sbt
@@ -1,12 +1,12 @@
import com.typesafe.sbt.SbtGit.{GitKeys => git}

lazy val theScalaVersion = "2.11.8"
lazy val theScalaVersion = "2.11.10"
/*
2.12.0 support is currently defined as a separate project (scala_2_12) for convenience while
integration libraries are still gaining 2.12.0 support
*/
lazy val scalaVersions = Seq("2.10.6", "2.11.8")
lazy val scalaVersionsAll = scalaVersions :+ "2.12.1"
lazy val scalaVersions = Seq("2.10.6", "2.11.10")
lazy val scalaVersionsAll = scalaVersions :+ "2.12.2"

lazy val scalaTestVersion = "3.0.1"
lazy val scalacheckVersion = "1.13.5"
Expand Down Expand Up @@ -109,7 +109,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
@@ -1,8 +1,8 @@
object Versions {

object Core {
val stable = "1.5.10"
val head = "1.5.11-SNAPSHOT"
val stable = "1.5.11"
val head = "1.5.12-SNAPSHOT"
}

object Macros {
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version = 0.13.13
sbt.version = 0.13.15
2 changes: 1 addition & 1 deletion project/plugins.sbt
Expand Up @@ -10,7 +10,7 @@ addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.1.0")

addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "0.8.5")

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.14")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.15")

addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.2.24")

Expand Down

0 comments on commit 9aa5bd0

Please sign in to comment.