From ff1cebbf61b1122d383e20ddc04415191e5b15da Mon Sep 17 00:00:00 2001 From: Jan Kaliszewski Date: Sat, 18 Mar 2023 16:24:35 +0100 Subject: [PATCH] Release 0.4.2 --- CHANGES.rst | 6 +++--- setup.cfg | 2 +- unittest_expander.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index ec40874..8acc6b0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,8 @@ Changes ======= -Unreleased (to be updated...) ------------------------------ +0.4.2 (2023-03-18) +------------------ * A minor interface usability fix: from now on, the **expand()** decorator's attributes **global_name_pattern** and @@ -11,7 +11,7 @@ Unreleased (to be updated...) trying to get any of them without first setting it caused an **AttributeError**). -* Documentation: several updates and minor fixes/improvements. +* Documentation: several updates, improvements and minor fixes. 0.4.1 (2023-03-17) diff --git a/setup.cfg b/setup.cfg index 05163d6..b1d9ad5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = unittest_expander -version = 0.4.2.dev2 +version = 0.4.2 description = Easy and flexible unit test parametrization long_description = file: README.rst long_description_content_type = text/x-rst diff --git a/unittest_expander.py b/unittest_expander.py index 99ec69d..a4d87fd 100644 --- a/unittest_expander.py +++ b/unittest_expander.py @@ -2695,7 +2695,7 @@ 'Substitute', ) -__version__ = '0.4.2.dev2' +__version__ = '0.4.2' _CLASS_TYPES = (type,) if _PY3 else (type, types.ClassType)