Skip to content

Commit

Permalink
[py] updates for 4.11.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Aug 1, 2023
1 parent 1995f30 commit 3718b8c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion py/BUILD.bazel
Expand Up @@ -16,7 +16,7 @@ compile_pip_requirements(
requirements_txt = ":requirements_lock.txt",
)

SE_VERSION = "4.11.1"
SE_VERSION = "4.11.2"

BROWSER_VERSIONS = [
"v85",
Expand Down
3 changes: 3 additions & 0 deletions py/CHANGES
@@ -1,3 +1,6 @@
Selenium 4.11.2
* better bug fix for #12454

Selenium 4.11.1
* Delete unusable Safari Options parameters to fix bug preventing Safari execution (#12454)

Expand Down
2 changes: 1 addition & 1 deletion py/docs/source/index.rst
Expand Up @@ -33,7 +33,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install

pip install -U selenium

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::
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.11.2.tar.gz), unarchive it, and run::

python setup.py install

Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Expand Up @@ -16,4 +16,4 @@
# under the License.


__version__ = "4.11.1"
__version__ = "4.11.2"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Expand Up @@ -44,7 +44,7 @@
from .wpewebkit.service import Service as WPEWebKitService # noqa
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa

__version__ = "4.11.1"
__version__ = "4.11.2"

# We need an explicit __all__ because the above won't otherwise be exported.
__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion py/setup.py
Expand Up @@ -27,7 +27,7 @@
setup_args = {
'cmdclass': {'install': install},
'name': 'selenium',
'version': "4.11.1",
'version': "4.11.2",
'license': 'Apache 2.0',
'description': 'Python bindings for Selenium',
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),
Expand Down

0 comments on commit 3718b8c

Please sign in to comment.