Skip to content

Commit 614a408

Browse files
[py] Bump python to 4.0.0
1 parent b97b406 commit 614a408

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ py_wheel(
134134
strip_path_prefixes = [
135135
"py",
136136
],
137-
version = "4.0.0rc3",
137+
version = "4.0.0",
138138
visibility = ["//visibility:public"],
139139
deps = [
140140
":selenium-pkg",

py/CHANGES

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Selenium 4.0.0
2+
3+
* Add cdp 95 to python and JS
4+
* Remove Edge legacy options. (#9908)
5+
* Expected condition for checking attribute value (#9881)
6+
* implement relative locator for find_element (#9902)
7+
* Fix python generation code for CDP to optionals better
8+
19
Selenium 4 Release Candidate 3
210

311
* Fix CDP Code Generation broken by Chromium 94
@@ -934,3 +942,4 @@ Selenium 2 Beta 2
934942
* Improved IEDriver
935943
* Basic Authentication support for Selenium 2
936944
* Ability to have multiple Firefox instances
945+

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

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

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