Skip to content

Commit 5f4d818

Browse files
[py] Update changelog and versions for B4
1 parent 5d36982 commit 5f4d818

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-5
lines changed

py/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ py_wheel(
135135
strip_path_prefixes = [
136136
"py",
137137
],
138-
version = "4.0.0.b3",
138+
version = "4.0.0.b4",
139139
visibility = ["//visibility:public"],
140140
deps = [
141141
":selenium-pkg",

py/CHANGES

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Selenium 4 Beta 4 (The Final Beta)
2+
3+
* Returning fixed IP in GitHub actions (#9550)
4+
* PEP 484 type hints for common.exceptions and webdriver.support.color (#9482)
5+
* Add the ability to pass in multiple options and have that capabilities
6+
* Add docstrings for RelativeBy
7+
* Add the ability to pass in different locators to do Relative Locator searches
8+
* Add a test with returning a JS Const object #9468
9+
* Handle poor responses from drivers when there are errors. Fixes #9437
10+
* Add the ability to enable mobile on options classes
11+
* Add the ability to use Options classes on Safari
12+
* Fix converting list of tuples to str in send_keys (#9330)
13+
* Expand element to be clickable in expected conditions(#9374)
14+
* Upgrade rules_python to 0.2.0
15+
116
Selenium 4 Beta 3
217

318
* Enable more tests
@@ -885,3 +900,4 @@ Selenium 2 Beta 2
885900

886901

887902

903+

py/docs/source/index.rst

+1-1
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.0b3.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.0b4.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

py/selenium/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "4.0.0b3"
19+
__version__ = "4.0.0b4"

py/selenium/webdriver/__init__.py

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

py/setup.py

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