Skip to content

Commit 7716634

Browse files
committed
[py] update changelog and bump versions to 4.5
1 parent 26dc816 commit 7716634

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
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.4.3"
18+
SE_VERSION = "4.5.0"
1919

2020
BROWSER_VERSIONS = [
2121
"v85",

py/CHANGES

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
Selenium (TBA next version)
1+
Selenium 4.5.0
22
* Fix frame_to_be_available_and_switch_to_it() for string inputs (#10963)
33
* Implicit non w3c capability conversion for `acceptSslCerts`, `platform` and `version` is now deprecated
44
* Additional type hints
55
* Bugfix options returning `None` when strict_file_interactability, set_window_rect or accept_insecure_certs are not set
6-
6+
* Add CDP for v105, remove support for v102
7+
* Add CDP for v106, remove support for v103
78

89
Selenium 4.4.3
910
* Update explicit dependency for certifi to remove upper bound (#10956)

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.4'
59+
version = '4.5'
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.4.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.5.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.4.0.jar
135+
java -jar selenium-server-4.5.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.4.3"
19+
__version__ = "4.5.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.4.3'
39+
__version__ = '4.5.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.4.3",
30+
'version': "4.5.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)