diff --git a/py/BUILD.bazel b/py/BUILD.bazel index a485db27ec021..783857f0e1e16 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -19,7 +19,7 @@ compile_pip_requirements( ], ) -SE_VERSION = "4.15.1" +SE_VERSION = "4.15.2" BROWSER_VERSIONS = [ "v85", diff --git a/py/CHANGES b/py/CHANGES index 2e514698c5e41..d890e1e5c39e0 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,6 @@ +Selenium 4.15.2 +* Fix bug for unzipping downloaded files + Selenium 4.15.1 * Fix bug in using SE_MANAGER_PATH * Fix inadvertent code change in mutation_event diff --git a/py/docs/source/conf.py b/py/docs/source/conf.py index a9ee58cf6d4fc..ed44d1216a723 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.15.1' +release = '4.15.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 fc706a495162f..dfdfe5161f4ef 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.15.1" +__version__ = "4.15.2" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 8763aff734760..c2ac08b810886 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.15.1" +__version__ = "4.15.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 50d0e6abac0f2..17a2057cba358 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.15.1", + 'version': "4.15.2", 'license': 'Apache 2.0', 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),