Skip to content

Commit 9a044b8

Browse files
committed
[py] Bumping to 4.17.1 and updating CHANGES
1 parent 6334c2f commit 9a044b8

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

py/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ compile_pip_requirements(
2020
],
2121
)
2222

23-
SE_VERSION = "4.17.0"
23+
SE_VERSION = "4.17.1"
2424

2525
BROWSER_VERSIONS = [
2626
"v85",

py/CHANGES

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Selenium 4.17.1
2+
* Fix typo in setup.py (#13487)
3+
14
Selenium 4.17.0
25
* Add page load strategy enum (#13258)
36
* Use correct file name when bumping versions (#13282)

py/docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# The short X.Y version.
5959
version = '4.15'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '4.17.0'
61+
release = '4.17.1'
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

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.17.0"
19+
__version__ = "4.17.1"

py/selenium/webdriver/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
from .wpewebkit.service import Service as WPEWebKitService # noqa
4545
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
4646

47-
__version__ = "4.17.0"
47+
__version__ = "4.17.1"
4848

4949
# We need an explicit __all__ because the above won't otherwise be exported.
5050
__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.17.0",
30+
'version': "4.17.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)