Skip to content

Commit 015c939

Browse files
committed
[py] Update changelog for 4.1.4
[run python]
1 parent a3d08b1 commit 015c939

5 files changed

Lines changed: 18 additions & 4 deletions

File tree

py/CHANGES

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Selenium 4.1.4
2+
3+
* Hook options class in safari driver (#10433)
4+
* Remove universal wheel, python 2 is unsupported (#10438)
5+
* Fix `tox -e docs` by pinning `Jinja2` (#10492)
6+
* Add support Chrome 100 and remove for Chrome 97
7+
* Removed desired capabilities from handshake code (#10494)
8+
* Invalid selector exceptions are is not a no such element exception
9+
* Do not convert tag name to css selector
10+
* Add debug logging for urllib response data (#10568)
11+
* Use monotonic clock for waits, fixes #10544 (#10550)
12+
* Adding Chrome DevTools 101 and removing 98
13+
* Add the ability to create sdist package of the python bindings
14+
115
Selenium 4.1.3
216

317
* fix generated wheel asset (#10022)

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.1.3.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.1.4.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.1.3"
19+
__version__ = "4.1.4"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737
from .common.proxy import Proxy # noqa
3838
from .common.keys import Keys # noqa
3939

40-
__version__ = '4.1.3'
40+
__version__ = '4.1.4'

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