From a07ac97e309786a6cd4e2cd9f9d57da054b7e994 Mon Sep 17 00:00:00 2001 From: Jacob Rief Date: Sat, 4 May 2024 23:44:11 +0200 Subject: [PATCH] Bump to version 1.4.1 --- CHANGELOG.md | 4 ++++ formset/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1294ffd7..ceb2c068 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Changes +1.4.1 + * Fix #136: Submit button shows bummer symbol after okay symbol. + * Fix #132: The size of the input window does not change as the window size changes. + 1.4 * Add support for form dialogs. They can be used standalone or to add complex extensions to the Richtext editor. diff --git a/formset/__init__.py b/formset/__init__.py index a48cae46..7a5921a6 100644 --- a/formset/__init__.py +++ b/formset/__init__.py @@ -1,2 +1,2 @@ -VERSION = 1, 5, 'dev' +VERSION = 1, 4, 1 __version__ = '.'.join(map(str, VERSION))