From bf354f0fd1cb92ab2b00fb3be25bdfc0f49b29a2 Mon Sep 17 00:00:00 2001 From: Will Keeling Date: Mon, 3 May 2021 13:28:33 +0100 Subject: [PATCH] Bump version to 4.2.5 --- HISTORY.rst | 5 +++++ seleniumwire/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8fad726..beaa976 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ History ~~~~~~~ +4.2.5 (2021-05-03) +------------------ + +* Switch to upstream_cert=True by default, enabling HTTP/2. + 4.2.4 (2021-04-13) ------------------ diff --git a/seleniumwire/__init__.py b/seleniumwire/__init__.py index a01efdb..9158bad 100644 --- a/seleniumwire/__init__.py +++ b/seleniumwire/__init__.py @@ -3,4 +3,4 @@ """Top-level package for Selenium Wire.""" __author__ = """Will Keeling""" -__version__ = '4.2.4' +__version__ = '4.2.5' diff --git a/setup.py b/setup.py index 6818be4..e6d4eb2 100644 --- a/setup.py +++ b/setup.py @@ -71,6 +71,6 @@ test_suite='tests.seleniumwire', tests_require=['pytest'], url='https://github.com/wkeeling/selenium-wire', - version='4.2.4', + version='4.2.5', zip_safe=False, )