Skip to content

Commit 5bc0c2c

Browse files
committed
[py] update changelog and bump version to 4.7.2
1 parent d03ad02 commit 5bc0c2c

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

py/BUILD.bazel

+1-1
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.7.1"
18+
SE_VERSION = "4.7.2"
1919

2020
BROWSER_VERSIONS = [
2121
"v85",

py/CHANGES

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Selenium 4.7.2
2+
* Put selenium manager bug fix from 4.7.1 in the correct place
3+
14
Selenium 4.7.1
25
* Fix bug preventing selenium manager from using Internet Explorer
36

py/selenium/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "4.7.1"
19+
__version__ = "4.7.2"

py/selenium/webdriver/__init__.py

+1-1
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.7.1"
39+
__version__ = "4.7.2"
4040

4141
# We need an explicit __all__ because the above won't otherwise be exported.
4242
__all__ = [

py/setup.py

+1-1
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.7.1",
30+
'version': "4.7.2",
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)