diff --git a/py/BUILD.bazel b/py/BUILD.bazel index b18200f1be3fa..8104bbaf8ada4 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -16,7 +16,7 @@ compile_pip_requirements( requirements_txt = ":requirements_lock.txt", ) -SE_VERSION = "4.10.0" +SE_VERSION = "4.11.0" BROWSER_VERSIONS = [ "v85", diff --git a/py/CHANGES b/py/CHANGES index a8cd65a06bac7..34bd9386cad8e 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,6 @@ +Selenium 4.11.0 +* Placeholder + Selenium 4.10.0 * Add CDP files for v114 and remove v111 * Fix bug preventing proxy from working in Options classes (#12029) diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index 6d2bb1494e757..ee002942e0240 100755 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -33,7 +33,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.10.0.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-4.11.0.tar.gz), unarchive it, and run:: python setup.py install @@ -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.10.0.jar + java -jar selenium-server-4.11.0.jar Then run your Python client scripts. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 373dd4087446c..39d4368374535 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.10.0" +__version__ = "4.11.0" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index f0a660ef69440..82d4c098cfe9c 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.10.0" +__version__ = "4.11.0" # 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 0f7e9849fa5e4..193e115789cb7 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.10.0", + 'version': "4.11.0", 'license': 'Apache 2.0', 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),