Skip to content

Commit 0c7deb4

Browse files
[py] Bump python to RC1
1 parent 8e6f4fe commit 0c7deb4

File tree

6 files changed

+31
-5
lines changed

6 files changed

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

py/CHANGES

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
Selenium 4 Release Candidate 1
2+
3+
* Remove cdp versions 88, 89, and 90
4+
* Replace v91 with v93 in bazel files
5+
* update IE options class in each language to match the currently supported capabilities in the IE Driver
6+
* Specify that the "find_element_by_* ..." warning is a deprecation warning (#9700)
7+
* clean up imports
8+
* Use options when passing things to remote webdriver instead of capabilities (#9678)
9+
* Correct deprecation message in IE handling code
10+
* Rewrite the logging module for bidi connections
11+
* remove non-w3c compliant parameters from default capabilities
12+
* Run type checks in CI and report typing coverage to codecov (#9523)
13+
* PEP 484 Type Hints added
14+
* Handle first/always match better when it hits lists/dicts. Fixes #9538
15+
* correct tox warnings
16+
* Fix deprecation warnings for Safari (#9577)
17+
* Allow 0 coordinates for the window position. Fixes #9574
18+
* Fix incorrect use of 'NoReturn' type annotation. (#9540)
19+
120
Selenium 4 Beta 4 (The Final Beta)
221

322
* Returning fixed IP in GitHub actions (#9550)
@@ -901,3 +920,10 @@ Selenium 2 Beta 2
901920

902921

903922

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

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.0b4'
41+
__version__ = '4.0.0.rc1'

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.0b4",
30+
'version': "4.0.0.rc1',
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)