From 2c58045b5c9306047c79f16286bff9ffeeed262e Mon Sep 17 00:00:00 2001 From: Maurits van Rees Date: Tue, 23 Apr 2024 17:37:16 +0200 Subject: [PATCH] Preparing release 3.0.6 [ci skip] --- CHANGES.rst | 12 ++++++++++++ news/122.bugfix | 4 ---- setup.py | 2 +- 3 files changed, 13 insertions(+), 5 deletions(-) delete mode 100644 news/122.bugfix diff --git a/CHANGES.rst b/CHANGES.rst index 9870c86b..b989911a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,18 @@ Changelog .. towncrier release notes start +3.0.6 (2024-04-23) +------------------ + +Bug fixes: + + +- Fix #122 validating if image is supported by PIL showing a validation error if not. + Include Pillow dependency in setup.py. + Fix ValueError: User could not be found in BaseTest setUp adding a transaction.commit(). + [rber474] (#122) + + 3.0.5 (2024-03-19) ------------------ diff --git a/news/122.bugfix b/news/122.bugfix deleted file mode 100644 index 367fd1c3..00000000 --- a/news/122.bugfix +++ /dev/null @@ -1,4 +0,0 @@ -Fix #122 validating if image is supported by PIL showing a validation error if not. -Include Pillow dependency in setup.py. -Fix ValueError: User could not be found in BaseTest setUp adding a transaction.commit(). -[rber474] \ No newline at end of file diff --git a/setup.py b/setup.py index 81bc08e7..c8279abe 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup -version = "3.0.6.dev0" +version = "3.0.6" long_description = ( f"{Path('README.rst').read_text()}\n{Path('CHANGES.rst').read_text()}"