Releases: lloydmeta/enumeratum
v1.4.18 release
Bumps to Circe 0.6.
v1.4.17 release
Bump versions for Play and ReactiveMongo thanks to @lambdista
v1.4.16 release
Thanks to @maowug, a bunch of typos got corrected, and ValueEnumOps
is now properly an AnyVal
to prevent runtime allocation.
v1.4.15 release
Adds Char
and Byte
implementations for ValueEnum
, along with their respective library integrations.
v1.4.14 release
Bump versions for:
- Play (to 2.5.6 for Scala 2.11.x, 2.10.x stays the same at 2.4.8 because of no new releases)
- Circe (to 0.5.1)
v1.4.13 release
This release brings ValueEnum
to Scala 2.10.x !
v1.4.12 release
1.4.11, which added support for nested ValueEnum
s and usage of ValueEnum
s in the REPL, caused ValueEnums to stop working when the constructor was marked as private. This version fixes that issue. Thanks @zifeo for reporting it.
v1.4.11 release
Note: There is a regression in this version whereby ValueEnum
with private constructors do not compile. This is fixed in 1.4.12
- Add support for nested
ValueEnum
s - Add support for
ValueEnum
s in the REPL
v1.4.10 release
Improve compile-time error message for ValueEnums.
v1.4.9 release
Adds StringEnum
(and related integrations) which acts as a ValueEnum
so that you can have compile-time checked String values.
Thanks @randomstatistic for the discussion and suggestion !