Skip to content

Commit 32abe16

Browse files
committed
[py] updates for 4.11.1 release
1 parent 4beab57 commit 32abe16

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ compile_pip_requirements(
1616
requirements_txt = ":requirements_lock.txt",
1717
)
1818

19-
SE_VERSION = "4.11.0"
19+
SE_VERSION = "4.11.1"
2020

2121
BROWSER_VERSIONS = [
2222
"v85",

py/CHANGES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Selenium 4.11.1
2+
* Delete unusable Safari Options parameters to fix bug preventing Safari execution (#12454)
3+
14
Selenium 4.11.0
25
* Add CDP files for v115 and remove v112
36
* removed redundant attributes `capabilities` and `set_capability` in wpewebkit/options.py (#12169)

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install
3333

3434
pip install -U selenium
3535

36-
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.11.0.tar.gz), unarchive it, and run::
36+
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.11.1.tar.gz), unarchive it, and run::
3737

3838
python setup.py install
3939

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.11.0"
19+
__version__ = "4.11.1"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
from .wpewebkit.service import Service as WPEWebKitService # noqa
4545
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
4646

47-
__version__ = "4.11.0"
47+
__version__ = "4.11.1"
4848

4949
# We need an explicit __all__ because the above won't otherwise be exported.
5050
__all__ = [

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