Skip to content

Commit 8f33cf2

Browse files
committed
[py]: Prep changelog for python 4.6.1
1 parent a65dde0 commit 8f33cf2

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
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.0"
18+
SE_VERSION = "4.6.1"
1919

2020
BROWSER_VERSIONS = [
2121
"v85",

py/CHANGES

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
Selenium (TBA version)
2-
* Replace response.getheader() with response.headers.get() (deprecated in urllib3 1.26.13)
1+
Selenium 4.6.1
2+
* Replace response.getheader() with response.headers.get() (deprecated in urllib3 1.26.13).
3+
* Fixed a bug in `Service` destructors accessing modules that no longer existed during interpreter shutdown.
4+
* Improved exception messages when raising for `relative` locator issues.
5+
36

47
Selenium 4.6.0
58
* Document firefox `service=` arg. closes #11067

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.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.6.1.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

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.0",
30+
'version': "4.6.1",
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)