From 2ddef73edf20876717761ecebba19494c9eed3e0 Mon Sep 17 00:00:00 2001 From: AutomatedTester Date: Thu, 30 Sep 2021 14:19:24 +0100 Subject: [PATCH] [py] Bump version to RC 2 --- py/BUILD.bazel | 2 +- py/CHANGES | 24 +++++++++++++----------- py/docs/source/index.rst | 2 +- py/selenium/__init__.py | 2 +- py/selenium/webdriver/__init__.py | 2 +- py/setup.py | 2 +- 6 files changed, 18 insertions(+), 16 deletions(-) diff --git a/py/BUILD.bazel b/py/BUILD.bazel index 9adf6a34fa839..86a732a78ec5f 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -133,7 +133,7 @@ py_wheel( strip_path_prefixes = [ "py", ], - version = "4.0.0rc1", + version = "4.0.0rc2", visibility = ["//visibility:public"], deps = [ ":selenium-pkg", diff --git a/py/CHANGES b/py/CHANGES index 463cf8cd7b43b..af11d64309e85 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,16 @@ +Selenium 4 Release Candidate 2 + +* Add new websocketUrl capability +* Force free ports for cdp in geckodriver +* Add w3c capabilities to Python options (#9870) +* expected_conditions and wait modules raises InvalidSelectorException for invalid xpaths (#9805) +* implement chromium specific endpoint for setting permissions +* implement chromium specific endpoint for deleting network conditions +* update ruby, python and JS to add support for v94 and remove support for v92 +* Fix type hint on chrome option method (#9840) +* Allows None to be set for the sameSite attribute (#9771) +* Fix typo in python webdriver for IE (#9801) + Selenium 4 Release Candidate 1 * Remove cdp versions 88, 89, and 90 @@ -916,14 +929,3 @@ Selenium 2 Beta 2 * Improved IEDriver * Basic Authentication support for Selenium 2 * Ability to have multiple Firefox instances - - - - - - -commit 5f4d8182e48da00f855a427293a1cd59f4b80503 -Author: David Burns -Date: Mon Jun 7 21:35:40 2021 +0100 - - [py] Update changelog and versions for B4 diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index 40b73a154b55c..bd7b16e2c325d 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.0.0rc1.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-4.0.0rc2.tar.gz), unarchive it, and run:: python setup.py install diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 387ea4afee794..8cf8fdc9e3c74 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.0.0.rc1" +__version__ = "4.0.0.rc2" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index fa92d575d0b65..6e3b59a910bb0 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -38,4 +38,4 @@ from .common.proxy import Proxy # noqa from .common.keys import Keys # noqa -__version__ = '4.0.0.rc1' +__version__ = '4.0.0.rc2' diff --git a/py/setup.py b/py/setup.py index 384eaa1c520b2..610d5b2c67e33 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.0.0.rc1", + 'version': "4.0.0.rc2", 'license': 'Apache 2.0', 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),