- Fix South migrations for Django 1.6.
ChoicesEnumitems are comparable by their values (==, !=, >, >=, <, <=) (thanks @jodal).- +``ChoicesEnum.values``: Returns all the Enum's raw values (eq:
[x.value for x in Enum]).
- Fix:
ChoicesEnumis now hashable (thanks @jodal).
- Fix: Proxy
__len__calls to the inner enum value.
- +ChoicesEnum.description: Alias for label, allow enum descriptors to be used by Graphene.
- Fix South migrations for Django 1.6.
ChoicesEnumrepr can be used to reconstruct an instance (item == eval(repr(item))).
- Fix sdist not including sub-modules (django contrib).
- README fixes and improvements.
- First release on PyPI.