Skip to content

Commit 3e70fc5

Browse files
committed
[py] Bumping to 4.3.0
[skip ci]
1 parent a4995e2 commit 3e70fc5

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

py/BUILD.bazel

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

18-
SE_VERSION = "4.2.0"
18+
SE_VERSION = "4.3.0"
1919

2020
BROWSER_VERSIONS = [
2121
"v85",

py/docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = '4.2'
59+
version = '4.3'
6060
# The full version, including alpha/beta/rc tags.
6161
release = version
6262

py/docs/source/index.rst

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

4040
python setup.py install
4141

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

133133
Run the server from the command line::
134134

135-
java -jar selenium-server-4.2.2.jar
135+
java -jar selenium-server-4.3.0.jar
136136

137137
Then run your Python client scripts.
138138

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.2.0"
19+
__version__ = "4.3.0"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
from .common.proxy import Proxy # noqa
3737
from .common.keys import Keys # noqa
3838

39-
__version__ = '4.2.0'
39+
__version__ = '4.3.0'
4040

4141
# We need an explicit __all__ because the above won't otherwise be exported.
4242
__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.2.0",
30+
'version': "4.3.0",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

scripts/create-release-notes.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)