Skip to content

Commit 8d92d98

Browse files
committed
[py] update changes and bump version to 4.7
1 parent 68b4609 commit 8d92d98

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-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.6.1"
18+
SE_VERSION = "4.7.0"
1919

2020
BROWSER_VERSIONS = [
2121
"v85",

py/CHANGES

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1+
Selenium 4.7.0
2+
* Add CDP files for v108 and remove v105
3+
* Improve error handling with Selenium Manager (#11329)
4+
* Fix bug preventing alternate package managers from using Selenium Manager (#11234)
5+
16
Selenium 4.6.1
27
* Replace response.getheader() with response.headers.get() (deprecated in urllib3 1.26.13).
38
* Fixed a bug in `Service` destructors accessing modules that no longer existed during interpreter shutdown.
49
* Improved exception messages when raising for `relative` locator issues.
510

6-
711
Selenium 4.6.0
812
* Document firefox `service=` arg. closes #11067
913
* Additional types and tidying safari service

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.6'
59+
version = '4.7'
6060
# The full version, including alpha/beta/rc tags.
6161
release = version
6262

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
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.6.1.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.7.0.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

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.6.1"
19+
__version__ = "4.7.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 .wpewebkit.options import Options as WPEWebKitOptions # noqa
3737
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
3838

39-
__version__ = "4.6.1"
39+
__version__ = "4.7.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.6.1",
30+
'version': "4.7.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)