diff --git a/CHANGELOG.md b/CHANGELOG.md index 79567de4..40de9e88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## Changes +1.3.2 + * Handle form reset for `PhoneNumberField` properly. + * Fix: Monolithic build did not include `PhoneNumberField`. + * Use cached translation in demo project. + 1.3.1 * Improved the usability of the `PhoneNumberField`. The user is now forced to select the country code from a dropdown list, whenever the phone number does not start with `+`. diff --git a/formset/__init__.py b/formset/__init__.py index c30e8ce5..5ae1a46e 100644 --- a/formset/__init__.py +++ b/formset/__init__.py @@ -1,2 +1,2 @@ -VERSION = 1, 3, 1 +VERSION = 1, 3, 2 __version__ = '.'.join(map(str, VERSION))