Skip to content

Commit

Permalink
Bump version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydmeta committed Sep 3, 2015
1 parent 5e953dc commit 8eb9772
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -30,23 +30,23 @@ Compatible with Scala 2.10.x and 2.11.x
For basic enumeratum (with no Play support):
```scala
libraryDependencies ++= Seq(
"com.beachape" %% "enumeratum" % "1.2.2"
"com.beachape" %% "enumeratum" % "1.3.1"
)
```

For enumeratum with Play JSON:
```scala
libraryDependencies ++= Seq(
"com.beachape" %% "enumeratum" % "1.2.2",
"com.beachape" %% "enumeratum-play-json" % "1.2.2"
"com.beachape" %% "enumeratum" % "1.3.1",
"com.beachape" %% "enumeratum-play-json" % "1.3.1"
)
```

For enumeratum with full Play support:
```scala
libraryDependencies ++= Seq(
"com.beachape" %% "enumeratum" % "1.2.2",
"com.beachape" %% "enumeratum-play" % "1.2.2"
"com.beachape" %% "enumeratum" % "1.3.1",
"com.beachape" %% "enumeratum-play" % "1.3.1"
)
```

Expand Down
6 changes: 3 additions & 3 deletions project/Build.scala
Expand Up @@ -11,10 +11,10 @@ import com.typesafe.sbt.SbtGit.{GitKeys => git}

object Enumeratum extends Build {

lazy val theVersion = "1.3.0"
lazy val theVersion = "1.3.1"
lazy val theScalaVersion = "2.11.6"
lazy val scalaVersions = Seq("2.10.5", "2.11.6")
lazy val thePlayVersion = "2.4.0"
lazy val scalaVersions = Seq("2.10.5", "2.11.7")
lazy val thePlayVersion = "2.4.2"

lazy val root = Project(id = "enumeratum-root", base = file("."), settings = commonWithPublishSettings)
.settings(
Expand Down

0 comments on commit 8eb9772

Please sign in to comment.