Skip to content

Commit fa1506f

Browse files
committed
[py]: Prep versioning for 4.11.0 release
1 parent 6ff1303 commit fa1506f

6 files changed

Lines changed: 9 additions & 6 deletions

File tree

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.10.0"
19+
SE_VERSION = "4.11.0"
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.0
2+
* Placeholder
3+
14
Selenium 4.10.0
25
* Add CDP files for v114 and remove v111
36
* Fix bug preventing proxy from working in Options classes (#12029)

py/docs/source/index.rst

Lines changed: 2 additions & 2 deletions
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.10.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.0.tar.gz), unarchive it, and run::
3737

3838
python setup.py install
3939

@@ -130,7 +130,7 @@ Download the server separately, from: https://www.selenium.dev/downloads/
130130

131131
Run the server from the command line::
132132

133-
java -jar selenium-server-4.10.0.jar
133+
java -jar selenium-server-4.11.0.jar
134134

135135
Then run your Python client scripts.
136136

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.10.0"
19+
__version__ = "4.11.0"

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.10.0"
47+
__version__ = "4.11.0"
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.10.0",
30+
'version': "4.11.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)