Skip to content

Commit

Permalink
[py] update changelog and bump versions to 4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Sep 28, 2022
1 parent 26dc816 commit 7716634
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion py/BUILD.bazel
Expand Up @@ -15,7 +15,7 @@ compile_pip_requirements(
requirements_txt = ":requirements_lock.txt",
)

SE_VERSION = "4.4.3"
SE_VERSION = "4.5.0"

BROWSER_VERSIONS = [
"v85",
Expand Down
5 changes: 3 additions & 2 deletions py/CHANGES
@@ -1,9 +1,10 @@
Selenium (TBA next version)
Selenium 4.5.0
* Fix frame_to_be_available_and_switch_to_it() for string inputs (#10963)
* Implicit non w3c capability conversion for `acceptSslCerts`, `platform` and `version` is now deprecated
* Additional type hints
* Bugfix options returning `None` when strict_file_interactability, set_window_rect or accept_insecure_certs are not set

* Add CDP for v105, remove support for v102
* Add CDP for v106, remove support for v103

Selenium 4.4.3
* Update explicit dependency for certifi to remove upper bound (#10956)
Expand Down
2 changes: 1 addition & 1 deletion py/docs/source/conf.py
Expand Up @@ -56,7 +56,7 @@
# built documents.
#
# The short X.Y version.
version = '4.4'
version = '4.5'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
4 changes: 2 additions & 2 deletions py/docs/source/index.rst
Expand Up @@ -35,7 +35,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.4.0.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.5.0.tar.gz), unarchive it, and run::

python setup.py install

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

Run the server from the command line::

java -jar selenium-server-4.4.0.jar
java -jar selenium-server-4.5.0.jar

Then run your Python client scripts.

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


__version__ = "4.4.3"
__version__ = "4.5.0"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Expand Up @@ -36,7 +36,7 @@
from .common.proxy import Proxy # noqa
from .common.keys import Keys # noqa

__version__ = '4.4.3'
__version__ = '4.5.0'

# 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.4.3",
'version': "4.5.0",
'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 7716634

Please sign in to comment.