From 385f96fe7ecc248662444754241a319d9cdb7bbe Mon Sep 17 00:00:00 2001 From: titusfortner Date: Thu, 2 Nov 2023 10:58:06 -0500 Subject: [PATCH] [py] update change log and versions for 4.15.1 --- py/BUILD.bazel | 2 +- py/CHANGES | 4 ++++ py/docs/source/index.rst | 2 +- py/selenium/__init__.py | 2 +- py/selenium/webdriver/__init__.py | 2 +- py/setup.py | 2 +- 6 files changed, 9 insertions(+), 5 deletions(-) diff --git a/py/BUILD.bazel b/py/BUILD.bazel index d321137f57411..a485db27ec021 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -19,7 +19,7 @@ compile_pip_requirements( ], ) -SE_VERSION = "4.15.0" +SE_VERSION = "4.15.1" BROWSER_VERSIONS = [ "v85", diff --git a/py/CHANGES b/py/CHANGES index db3e44bcd410d..2e514698c5e41 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,7 @@ +Selenium 4.15.1 +* Fix bug in using SE_MANAGER_PATH +* Fix inadvertent code change in mutation_event + Selenium 4.15.0 * Return a `pathlib.Path` when `SE_MANAGER_PATH` is set. closes #12929 * Do not set browser binary in selenium manager if it is an empty string (#12738) diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index 1adc92dc5ccc3..7f0ebfa2155fb 100755 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -130,7 +130,7 @@ Download the server separately, from: https://www.selenium.dev/downloads/ Run the server from the command line:: - java -jar selenium-server-4.15.0.jar + java -jar selenium-server-4.15.1.jar Then run your Python client scripts. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index cefcb03b436ea..fc706a495162f 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.14.0" +__version__ = "4.15.1" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 828c6f8c5f44c..8763aff734760 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.14.0" +__version__ = "4.15.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 340d11074a0d3..50d0e6abac0f2 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.15.0", + 'version': "4.15.1", 'license': 'Apache 2.0', 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),