From 965366bfd9e63913abf9674e77ef3725186122f0 Mon Sep 17 00:00:00 2001 From: sarayourfriend Date: Tue, 15 Oct 2024 13:54:37 +1100 Subject: [PATCH] Bump to v2.1.1 --- History.rst | 8 ++++++++ src/pook/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/History.rst b/History.rst index fdb05ec..81d7872 100644 --- a/History.rst +++ b/History.rst @@ -1,6 +1,14 @@ History ======= +v2.1.1 / 2024-10-15 +------------------------- + + * Flush mocks when `pook.activate` used as a wrapper by @shift0965 in https://github.com/h2non/pook/pull/145. + + * This prevents mocks from leaking between test cases and should fix some potentially confusing edge case bugs. + + v2.1.0 / 2024-10-08 ------------------------- diff --git a/src/pook/__init__.py b/src/pook/__init__.py index 1745f5c..a871118 100644 --- a/src/pook/__init__.py +++ b/src/pook/__init__.py @@ -44,4 +44,4 @@ __license__ = "MIT" # Current version -__version__ = "2.1.0" +__version__ = "2.1.1"