From e12c947a519ce84510b15df07030ac2c77df2a39 Mon Sep 17 00:00:00 2001 From: Jacob Rief Date: Mon, 13 May 2024 11:32:04 +0200 Subject: [PATCH] Bump to version 1.4.4 --- CHANGELOG.md | 7 +++++++ formset/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a53407d..d1be34db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## Changes +1.4.4 + * Fix: In widget `PhoneNumberInput`, the country lookup field did not behave es expected when + using the up- or down-arrow keys to navigate through the list of countries. + * In widget `PhoneNumberInput`, entering "0" into the search field now does not filter the list + of countries anymore. This is because country codes starting with "00" is not a valid E.164 + format. + 1.4.3 * Fix regression in widget `UploadedFileInput` introduced in 1.4: The Delete button did not work for files added through the `initial` parameter. diff --git a/formset/__init__.py b/formset/__init__.py index 426af8c1..fa75bf94 100644 --- a/formset/__init__.py +++ b/formset/__init__.py @@ -1,2 +1,2 @@ -VERSION = 1, 4, 3 +VERSION = 1, 4, 4 __version__ = '.'.join(map(str, VERSION))