Skip to content

Commit a2a58ba

Browse files
committed
[py] bump python bindings to 4.1.3
1 parent 28cec2d commit a2a58ba

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
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.1.2"
8+
SE_VERSION = "4.1.3"
99

1010
BROWSER_VERSIONS = [
1111
"v85",

‎py/CHANGES

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Selenium 4.1.3
2+
3+
* fix generated wheel asset (#10022)
4+
* add support for proxy authentication (#10358)
5+
* add Safari options (#10385)
6+
* add support for Firefox to install unpacked addons (#10308)
7+
* add support for Chrome 99 and remove support for Chrome 96
8+
19
Selenium 4.1.2
210

311
* Include `py.typed` in the library

‎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.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.3.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.2"
19+
__version__ = "4.1.3"

‎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.2'
40+
__version__ = '4.1.3'

‎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.0",
30+
'version': "4.1.3",
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)