Skip to content

Commit 4b4ce7b

Browse files
committed
[py]: Bump version for 4.4.1
1 parent d0b95a0 commit 4b4ce7b

5 files changed

Lines changed: 7 additions & 4 deletions

File tree

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

2020
BROWSER_VERSIONS = [
2121
"v85",

py/CHANGES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Selenium 4.4.1
2+
* Removal of urllib3[secure] extras (deprecated) dependency
3+
14
Selenium 4.4.0
25
* More flexibility in locating Firefox binary (#10818)
36
* Add CDP for v104, remove support for v101

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.0"
19+
__version__ = "4.4.1"

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.0'
39+
__version__ = '4.4.1'
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.0",
30+
'version': "4.4.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)