diff --git a/CHANGES.rst b/CHANGES.rst index 9060624..d8e06a4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,12 @@ Changelog Here you can see the full list of changes between each WTForms-Alchemy release. +0.16.3 (2017-06-25) +^^^^^^^^^^^^^^^^^^^ + +- Fixed ChoiceType conversion for Enums (#112, pull request courtesy of fayazkhan) + + 0.16.2 (2017-02-28) ^^^^^^^^^^^^^^^^^^^ diff --git a/wtforms_alchemy/__init__.py b/wtforms_alchemy/__init__.py index 29d2b55..dc18fad 100644 --- a/wtforms_alchemy/__init__.py +++ b/wtforms_alchemy/__init__.py @@ -56,7 +56,7 @@ ) -__version__ = '0.16.2' +__version__ = '0.16.3' def model_form_meta_factory(base=FormMeta):