From 5bc0c2c559cd5672fdb41d1075e9b21c8acf9f64 Mon Sep 17 00:00:00 2001 From: titusfortner Date: Fri, 2 Dec 2022 14:24:08 -0600 Subject: [PATCH] [py] update changelog and bump version to 4.7.2 --- py/BUILD.bazel | 2 +- py/CHANGES | 3 +++ py/selenium/__init__.py | 2 +- py/selenium/webdriver/__init__.py | 2 +- py/setup.py | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/py/BUILD.bazel b/py/BUILD.bazel index 449f544c34c48..f7777b5d9fbad 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -15,7 +15,7 @@ compile_pip_requirements( requirements_txt = ":requirements_lock.txt", ) -SE_VERSION = "4.7.1" +SE_VERSION = "4.7.2" BROWSER_VERSIONS = [ "v85", diff --git a/py/CHANGES b/py/CHANGES index aa8340e334e33..2a8d0f41173a2 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,6 @@ +Selenium 4.7.2 +* Put selenium manager bug fix from 4.7.1 in the correct place + Selenium 4.7.1 * Fix bug preventing selenium manager from using Internet Explorer diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 5877a4af08d72..bc75f24aa5b2b 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.7.1" +__version__ = "4.7.2" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 4254a7920a250..8eefe7d2e86c9 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -36,7 +36,7 @@ from .wpewebkit.options import Options as WPEWebKitOptions # noqa from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa -__version__ = "4.7.1" +__version__ = "4.7.2" # We need an explicit __all__ because the above won't otherwise be exported. __all__ = [ diff --git a/py/setup.py b/py/setup.py index 78347cd8e5d8a..fab83e500a959 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.7.1", + 'version': "4.7.2", 'license': 'Apache 2.0', 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),