Skip to content

Commit

Permalink
Upgrade Play and Circe versions (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydmeta authored Sep 6, 2016
1 parent 5f4dfad commit 7d0a7f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ project/target
target
tmp
.history
*.jfr
dist
/.idea
/*.iml
Expand Down
4 changes: 2 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ object Enumeratum extends Build {
lazy val theScalaVersion = "2.11.8"
lazy val scalaVersions = Seq("2.10.6", "2.11.8")
def thePlayVersion(scalaVersion: String) = CrossVersion.partialVersion(scalaVersion) match {
case Some((2, scalaMajor)) if scalaMajor >= 11 => "2.5.4"
case Some((2, scalaMajor)) if scalaMajor >= 11 => "2.5.6"
case Some((2, scalaMajor)) if scalaMajor == 10 => "2.4.8"
case _ => throw new IllegalArgumentException(s"Unsupported Scala version $scalaVersion")
}
Expand Down Expand Up @@ -152,7 +152,7 @@ object Enumeratum extends Build {
else
CrossVersion.binary
}
Seq(impl.ScalaJSGroupID.withCross("io.circe", "circe-core", cross) % "0.4.1")
Seq(impl.ScalaJSGroupID.withCross("io.circe", "circe-core", cross) % "0.5.1")
}
)
.settings(testSettings:_*)
Expand Down

0 comments on commit 7d0a7f1

Please sign in to comment.