Skip to content

Commit

Permalink
[py] bump to RC 3
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Oct 8, 2021
1 parent 46d4ee5 commit 6c6a72c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion py/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ py_wheel(
strip_path_prefixes = [
"py",
],
version = "4.0.0rc2",
version = "4.0.0rc3",
visibility = ["//visibility:public"],
deps = [
":selenium-pkg",
Expand Down
5 changes: 5 additions & 0 deletions py/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Selenium 4 Release Candidate 3

* Fix CDP Code Generation broken by Chromium 94
* Fix Deprecation warnings for IE Bindings. Fixes #9818

Selenium 4 Release Candidate 2

* Add new websocketUrl capability
Expand Down
2 changes: 1 addition & 1 deletion py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install

pip install -U selenium

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::
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::

python setup.py install

Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
# under the License.


__version__ = "4.0.0.rc2"
__version__ = "4.0.0.rc3"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@
from .common.proxy import Proxy # noqa
from .common.keys import Keys # noqa

__version__ = '4.0.0.rc2'
__version__ = '4.0.0.rc3'
2 changes: 1 addition & 1 deletion py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
setup_args = {
'cmdclass': {'install': install},
'name': 'selenium',
'version': "4.0.0.rc2",
'version': "4.0.0.rc3",
'license': 'Apache 2.0',
'description': 'Python bindings for Selenium',
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),
Expand Down

0 comments on commit 6c6a72c

Please sign in to comment.