From d9ff42059eb233877ec09fc808d1b81453186ad9 Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Tue, 23 Jan 2024 15:50:15 +0100 Subject: [PATCH] [py] Bumping to 4.17.2 and updating CHANGES --- py/BUILD.bazel | 2 +- py/CHANGES | 3 +++ py/docs/source/conf.py | 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 3e760eece1b33..2bd966190e0b6 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -20,7 +20,7 @@ compile_pip_requirements( ], ) -SE_VERSION = "4.17.1" +SE_VERSION = "4.17.2" BROWSER_VERSIONS = [ "v85", diff --git a/py/CHANGES b/py/CHANGES index 062c4cefc45af..edb05c297e29a 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,6 @@ +Selenium 4.17.2 +* py] Correct typing_extension dependency for wheel generation + Selenium 4.17.1 * Fix typo in setup.py (#13487) diff --git a/py/docs/source/conf.py b/py/docs/source/conf.py index 4a90f544f7f31..df4e67b1dbb8d 100644 --- a/py/docs/source/conf.py +++ b/py/docs/source/conf.py @@ -58,7 +58,7 @@ # The short X.Y version. version = '4.15' # The full version, including alpha/beta/rc tags. -release = '4.17.1' +release = '4.17.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 20d08ca606160..46a5f545f7655 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.17.1" +__version__ = "4.17.2" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 2bb3c75ec2efd..711d8aa9ccbf3 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -44,7 +44,7 @@ from .wpewebkit.service import Service as WPEWebKitService # noqa from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa -__version__ = "4.17.1" +__version__ = "4.17.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 3a2e2c162a880..24ec88ad9f134 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.17.1", + 'version': "4.17.2", 'license': 'Apache 2.0', 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),