From 0a0412fbbed66e095b824078245cf4787c7f3f9f Mon Sep 17 00:00:00 2001 From: sarayourfriend Date: Thu, 21 Nov 2024 10:40:49 +1100 Subject: [PATCH] Bump to 2.1.2 --- History.rst | 5 ++++- src/pook/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/History.rst b/History.rst index 0dabe19..edd6634 100644 --- a/History.rst +++ b/History.rst @@ -1,11 +1,14 @@ History ======= -vX.Y.Z / 20xx-xx-xx +v2.1.2 / 2024-11-21 ------------------------- * Return the correct type of ``headers`` object for standard library urllib by @sarayourfriend in https://github.com/h2non/pook/pull/154. * Support ``Sequence[tuple[str, str]]`` header input with aiohttp by @sarayourfriend in https://github.com/h2non/pook/pull/154. + * Fix network filters when multiple filters are active by @rsmeral in https://github.com/h2non/pook/pull/155. + * Fix aiohttp matching not working with session base URL or headers by @sarayourfriend in https://github.com/h2non/pook/pull/157. + * Add support for Python 3.13 by @sarayourfriend in https://github.com/h2non/pook/pull/149. v2.1.1 / 2024-10-15 ------------------------- diff --git a/src/pook/__init__.py b/src/pook/__init__.py index a871118..2c00095 100644 --- a/src/pook/__init__.py +++ b/src/pook/__init__.py @@ -44,4 +44,4 @@ __license__ = "MIT" # Current version -__version__ = "2.1.1" +__version__ = "2.1.2"