Skip to content

Commit

Permalink
[py]: Bump version for 4.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
symonk committed Aug 17, 2022
1 parent d0b95a0 commit 4b4ce7b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion py/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ compile_pip_requirements(
requirements_txt = ":requirements_lock.txt",
)

SE_VERSION = "4.4.0"
SE_VERSION = "4.4.1"

BROWSER_VERSIONS = [
"v85",
Expand Down
3 changes: 3 additions & 0 deletions py/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Selenium 4.4.1
* Removal of urllib3[secure] extras (deprecated) dependency

Selenium 4.4.0
* More flexibility in locating Firefox binary (#10818)
* Add CDP for v104, remove support for v101
Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
# under the License.


__version__ = "4.4.0"
__version__ = "4.4.1"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from .common.proxy import Proxy # noqa
from .common.keys import Keys # noqa

__version__ = '4.4.0'
__version__ = '4.4.1'

# 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
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
setup_args = {
'cmdclass': {'install': install},
'name': 'selenium',
'version': "4.4.0",
'version': "4.4.1",
'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 4b4ce7b

Please sign in to comment.