Skip to content

Commit 6c6a72c

Browse files
[py] bump to RC 3
1 parent 46d4ee5 commit 6c6a72c

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
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.0rc2",
136+
version = "4.0.0rc3",
137137
visibility = ["//visibility:public"],
138138
deps = [
139139
":selenium-pkg",

py/CHANGES

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Selenium 4 Release Candidate 3
2+
3+
* Fix CDP Code Generation broken by Chromium 94
4+
* Fix Deprecation warnings for IE Bindings. Fixes #9818
5+
16
Selenium 4 Release Candidate 2
27

38
* Add new websocketUrl capability

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.0rc2.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.0rc3.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.rc2"
19+
__version__ = "4.0.0.rc3"

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.rc2'
41+
__version__ = '4.0.0.rc3'

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.rc2",
30+
'version': "4.0.0.rc3",
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)