------------
This is a small release that fixes some ugliness. In Django 1.7 and up, the
validator can now be used as documented in the readme. Before this version, the
error::
ValueError: Cannot serialize: <bound method DjangoChoicesMeta.validator of <class 'choices.models.MyModel.Choices'>>
would be raised, and a workaround was to define a validator function calling the
choices' validator, requiring everything to be defined in the module scope.
This is now fixed by moving to a class based validator which is deconstructible.