From 75d9ea1389f8378fc0554f144a0de3da0d7c6806 Mon Sep 17 00:00:00 2001 From: Mark Walker Date: Sat, 18 Sep 2021 00:32:44 +0100 Subject: [PATCH] 0.8.0 release prep --- CHANGELOG.md | 9 +++++++++ django_bleach/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c2d5d6..1575e87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +Version 0.8.0 +============= +###### 18-09-2021 +Thank you to [Mark Gregson](https://github.com/MrkGrgsn) for providing the changes in this release! +* Fix for [#28](https://github.com/marksweb/django-bleach/issues/28): Return ``empty_value`` for any empty input value +* Fix for [#27](https://github.com/marksweb/django-bleach/issues/27): Mark cleaned data as template safe +* Fix for [#25](https://github.com/marksweb/django-bleach/issues/25): Respect the ``form_class`` argument +* Fix custom widget tests [#34](https://github.com/marksweb/django-bleach/pulls/34) + Version 0.7.2 ============= ###### 27-07-2021 diff --git a/django_bleach/__init__.py b/django_bleach/__init__.py index 30c3f5e..14391da 100644 --- a/django_bleach/__init__.py +++ b/django_bleach/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- __author__ = "Tim Heap & Mark Walker" -__version__ = "0.7.2" +__version__ = "0.8.0" VERSION = __version__.split(".")