From 01a47b4b4a3905532e94d248e0ecfdd9f03d116b Mon Sep 17 00:00:00 2001 From: titusfortner Date: Fri, 2 Dec 2022 12:56:07 -0600 Subject: [PATCH] [py] update changelog and bump version to 4.7.1 --- py/BUILD.bazel | 2 +- py/CHANGES | 3 +++ py/docs/source/index.rst | 2 +- py/selenium/__init__.py | 2 +- py/selenium/webdriver/__init__.py | 2 +- py/setup.py | 2 +- 6 files changed, 8 insertions(+), 5 deletions(-) diff --git a/py/BUILD.bazel b/py/BUILD.bazel index 389b0a9a7f9c3..449f544c34c48 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.0" +SE_VERSION = "4.7.1" BROWSER_VERSIONS = [ "v85", diff --git a/py/CHANGES b/py/CHANGES index 081a389df62db..aa8340e334e33 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,6 @@ +Selenium 4.7.1 +* Fix bug preventing selenium manager from using Internet Explorer + Selenium 4.7.0 * Add CDP files for v108 and remove v105 * Improve error handling with Selenium Manager (#11329) diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index 866b69e5aaadb..9846824072785 100755 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -35,7 +35,7 @@ If you have `pip `_ on your system, you can simply install pip install -U selenium -Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-4.7.0.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-4.7.1.tar.gz), unarchive it, and run:: python setup.py install diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index c17ebb5ece955..5877a4af08d72 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.7.0" +__version__ = "4.7.1" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index dea136da47b81..4254a7920a250 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.0" +__version__ = "4.7.1" # 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 e9a5e6b879c96..78347cd8e5d8a 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.7.0", + 'version': "4.7.1", 'license': 'Apache 2.0', 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),