From 23f2e44c517168a82ef010ed933377370d6cb3f9 Mon Sep 17 00:00:00 2001 From: Jacob Rief Date: Thu, 7 Dec 2023 09:17:37 +0100 Subject: [PATCH] Bump to version 1.3.6 --- CHANGELOG.md | 5 ++++- formset/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b73896f3..0ba884ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ ## Changes +1.3.6 + * Backport to Django-4.0. + 1.3.5 - * Fix #99: File upload is not compatible with generic django storage class. + * Fix #99: File upload is not compatible with generic Django storage class. 1.3.4 * Fix #97: Forms and FormCollections with disabled fields and initial data, now are validated diff --git a/formset/__init__.py b/formset/__init__.py index c1d38db6..4befa69a 100644 --- a/formset/__init__.py +++ b/formset/__init__.py @@ -1,2 +1,2 @@ -VERSION = 1, 3, 5 +VERSION = 1, 3, 6 __version__ = '.'.join(map(str, VERSION))