Skip to content

Commit 5b5f3f4

Browse files
[py] Bump python bindings to 4.1.0 with updated changelog
1 parent 4e24e99 commit 5b5f3f4

File tree

7 files changed

+18
-6
lines changed

7 files changed

+18
-6
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ load("//common:defs.bzl", "copy_file")
55
load("//py:defs.bzl", "py_test_suite")
66
load("//py/private:browsers.bzl", "BROWSERS")
77

8-
SE_VERSION = "4.0.0"
8+
SE_VERSION = "4.1.0"
99

1010
BROWSER_VERSIONS = [
1111
"v85",

py/CHANGES

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Selenium 4.1.0
2+
3+
* Add CDP for v96, remove support for v92 and v93
4+
* Add support for shadow dom end points
5+
* Upgrade sphinx to use latest
6+
* Correct docstrings around Service usage
7+
* XFail alert tests due to https://bugzilla.mozilla.org/show_bug.cgi\?id\=1731795
8+
* Remove py2 import code
9+
* Check the values in NO_PROXY and set the poolmanager accordingly (#9925, #9967)
10+
* Move python version to a variable to be shared about in build steps
11+
* Bump Bazel rules_pkg to 0.5.1
12+
113
Selenium 4.0.0
214

315
* Add cdp 95 to python and JS

py/docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# built documents.
5858
#
5959
# The short X.Y version.
60-
version = '4.0.0'
60+
version = '4.1.0'
6161
# The full version, including alpha/beta/rc tags.
6262
release = version
6363

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.0.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.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"
19+
__version__ = "4.1.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'
41+
__version__ = '4.1.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",
30+
'version': "4.1.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)