Skip to content

Commit 7cbfdbd

Browse files
committed
[build] Using correct file name when bumping versions
Fixes #13282
1 parent 2d73f13 commit 7cbfdbd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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.15.2"
19+
__version__ = "4.16.0"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
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.15.2"
47+
__version__ = "4.16.0"
4848

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

scripts/update-versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ FILES_TO_UPDATE=(
2626
"rb/lib/selenium/webdriver/version.rb"
2727
"py/setup.py"
2828
"py/BUILD.bazel"
29-
"py/selenium/init.py"
30-
"py/selenium/webdriver/init.py"
29+
"py/selenium/__init__.py"
30+
"py/selenium/webdriver/__init__.py"
3131
"py/docs/source/conf.py"
3232
"java/version.bzl"
3333
"javascript/node/selenium-webdriver/package.json"

0 commit comments

Comments
 (0)