diff --git a/History.rst b/History.rst index 0dabe19..a5a82d1 100644 --- a/History.rst +++ b/History.rst @@ -1,11 +1,13 @@ 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. 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"