Skip to content

Commit

Permalink
[py] update changes and bump version to 4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Dec 1, 2022
1 parent 68b4609 commit 8d92d98
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 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.6.1"
SE_VERSION = "4.7.0"

BROWSER_VERSIONS = [
"v85",
Expand Down
6 changes: 5 additions & 1 deletion py/CHANGES
@@ -1,9 +1,13 @@
Selenium 4.7.0
* Add CDP files for v108 and remove v105
* Improve error handling with Selenium Manager (#11329)
* Fix bug preventing alternate package managers from using Selenium Manager (#11234)

Selenium 4.6.1
* Replace response.getheader() with response.headers.get() (deprecated in urllib3 1.26.13).
* Fixed a bug in `Service` destructors accessing modules that no longer existed during interpreter shutdown.
* Improved exception messages when raising for `relative` locator issues.


Selenium 4.6.0
* Document firefox `service=` arg. closes #11067
* Additional types and tidying safari service
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.6'
version = '4.7'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion 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.6.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.7.0.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.6.1"
__version__ = "4.7.0"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Expand Up @@ -36,7 +36,7 @@
from .wpewebkit.options import Options as WPEWebKitOptions # noqa
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa

__version__ = "4.6.1"
__version__ = "4.7.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.6.1",
'version': "4.7.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 8d92d98

Please sign in to comment.