Skip to content

Commit

Permalink
1.4.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydmeta committed May 7, 2016
1 parent d5776a3 commit 0068cb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object EnumFormats {
val maybeBound = enum.withValueOpt(s)
maybeBound match {
case Some(obj) => JsSuccess(obj)
case None => JsError(s"Enumeration expected of type: '$enum', but it does not appear to contain the value: '$s'")
case None => JsError("error.expected.validenumvalue")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import org.scalajs.sbtplugin.ScalaJSPlugin.autoImport._

object Enumeratum extends Build {

lazy val theVersion = "1.4.4-SNAPSHOT"
lazy val theVersion = "1.4.4"
lazy val theScalaVersion = "2.11.8"
lazy val scalaVersions = Seq("2.10.6", "2.11.8")
def thePlayVersion(scalaVersion: String) = CrossVersion.partialVersion(scalaVersion) match {
Expand Down

0 comments on commit 0068cb8

Please sign in to comment.