Skip to content

Commit

Permalink
Bump to version 1.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed May 29, 2024
1 parent 2446521 commit 202f7ce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## Changes

1.4.5
* Fix: When submitting a form with a `FileField`, the `UploadedFileInput` widget returns ``None``
to signalize that nothing changed. Then however, the `clean()`-method did not access the initial
value of the field. This is fixed now.
* Fix: Using the value `cleaned_data` from a FormCollection, always started to validate and then
returned values. Now, one must explicitly call `is_valid()`, otherwise an `AttributeError` is
raised.

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.
Expand Down
2 changes: 1 addition & 1 deletion formset/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = 1, 4, 4
VERSION = 1, 4, 5
__version__ = '.'.join(map(str, VERSION))

0 comments on commit 202f7ce

Please sign in to comment.