Skip to content

Commit 8eb9772

Browse files
committed
Bump version to 1.3.1
1 parent 5e953dc commit 8eb9772

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,23 @@ Compatible with Scala 2.10.x and 2.11.x
3030
For basic enumeratum (with no Play support):
3131
```scala
3232
libraryDependencies ++= Seq(
33-
"com.beachape" %% "enumeratum" % "1.2.2"
33+
"com.beachape" %% "enumeratum" % "1.3.1"
3434
)
3535
```
3636

3737
For enumeratum with Play JSON:
3838
```scala
3939
libraryDependencies ++= Seq(
40-
"com.beachape" %% "enumeratum" % "1.2.2",
41-
"com.beachape" %% "enumeratum-play-json" % "1.2.2"
40+
"com.beachape" %% "enumeratum" % "1.3.1",
41+
"com.beachape" %% "enumeratum-play-json" % "1.3.1"
4242
)
4343
```
4444

4545
For enumeratum with full Play support:
4646
```scala
4747
libraryDependencies ++= Seq(
48-
"com.beachape" %% "enumeratum" % "1.2.2",
49-
"com.beachape" %% "enumeratum-play" % "1.2.2"
48+
"com.beachape" %% "enumeratum" % "1.3.1",
49+
"com.beachape" %% "enumeratum-play" % "1.3.1"
5050
)
5151
```
5252

project/Build.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import com.typesafe.sbt.SbtGit.{GitKeys => git}
1111

1212
object Enumeratum extends Build {
1313

14-
lazy val theVersion = "1.3.0"
14+
lazy val theVersion = "1.3.1"
1515
lazy val theScalaVersion = "2.11.6"
16-
lazy val scalaVersions = Seq("2.10.5", "2.11.6")
17-
lazy val thePlayVersion = "2.4.0"
16+
lazy val scalaVersions = Seq("2.10.5", "2.11.7")
17+
lazy val thePlayVersion = "2.4.2"
1818

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

0 commit comments

Comments
 (0)