Skip to content

Commit 2ddef73

Browse files
[py] Bump version to RC 2
1 parent 17bc2e6 commit 2ddef73

File tree

6 files changed

+18
-16
lines changed

6 files changed

+18
-16
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ py_wheel(
133133
strip_path_prefixes = [
134134
"py",
135135
],
136-
version = "4.0.0rc1",
136+
version = "4.0.0rc2",
137137
visibility = ["//visibility:public"],
138138
deps = [
139139
":selenium-pkg",

py/CHANGES

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
Selenium 4 Release Candidate 2
2+
3+
* Add new websocketUrl capability
4+
* Force free ports for cdp in geckodriver
5+
* Add w3c capabilities to Python options (#9870)
6+
* expected_conditions and wait modules raises InvalidSelectorException for invalid xpaths (#9805)
7+
* implement chromium specific endpoint for setting permissions
8+
* implement chromium specific endpoint for deleting network conditions
9+
* update ruby, python and JS to add support for v94 and remove support for v92
10+
* Fix type hint on chrome option method (#9840)
11+
* Allows None to be set for the sameSite attribute (#9771)
12+
* Fix typo in python webdriver for IE (#9801)
13+
114
Selenium 4 Release Candidate 1
215

316
* Remove cdp versions 88, 89, and 90
@@ -916,14 +929,3 @@ Selenium 2 Beta 2
916929
* Improved IEDriver
917930
* Basic Authentication support for Selenium 2
918931
* Ability to have multiple Firefox instances
919-
920-
921-
922-
923-
924-
925-
commit 5f4d8182e48da00f855a427293a1cd59f4b80503
926-
Author: David Burns <david.b@browserstack.com>
927-
Date: Mon Jun 7 21:35:40 2021 +0100
928-
929-
[py] Update changelog and versions for B4

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install
3535

3636
pip install -U selenium
3737

38-
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.0.0rc1.tar.gz), unarchive it, and run::
38+
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.0.0rc2.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "4.0.0.rc1"
19+
__version__ = "4.0.0.rc2"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
from .common.proxy import Proxy # noqa
3939
from .common.keys import Keys # noqa
4040

41-
__version__ = '4.0.0.rc1'
41+
__version__ = '4.0.0.rc2'

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
setup_args = {
2828
'cmdclass': {'install': install},
2929
'name': 'selenium',
30-
'version': "4.0.0.rc1",
30+
'version': "4.0.0.rc2",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

0 commit comments

Comments
 (0)