* Add support Django 3.0 (tks klette). * Drop support for Python 3.4. * Fix issue when using Django EnumIntegerField on Admin.
0.6.0
------------------
* Adding schematics contrib type ChoicesEnumType. * Drop support for Django 1.6, 1.7, 1.8.
0.5.3
------------------
* Fix Django migrations with default values for Django 1.7+.
0.5.2
------------------
* Optimize member check and dynamic creation of `is_<name>` properties.
0.5.1
------------------
* Fix readme RST (requires new Pypi upload).
0.5.0
------------------
* Membership test (item in Enum) returning valid results for primitive values. * New dict-like `.get` method able to return a default value (thanks leandrogs). * Django: Support Postgres array functions and queries (thanks tomfa). * Django: Support for deferring an enum field using `queryset.defer()` (thanks noamkush). * Django: 2.1 support.