Skip to content

Commit 989b0ca

Browse files
committed
[build] Bumping versions for Nightly
1 parent c6bd096 commit 989b0ca

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

java/version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SE_VERSION = "4.18.1"
1+
SE_VERSION = "4.19.0-SNAPSHOT"
22
TOOLS_JAVA_VERSION = "17"

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ compile_pip_requirements(
3636
],
3737
)
3838

39-
SE_VERSION = "4.18.1"
39+
SE_VERSION = "4.19.0.nightly"
4040

4141
BROWSER_VERSIONS = [
4242
"v85",

py/docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = '4.18'
59+
version = '4.19'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '4.18.1'
61+
release = '4.19.0.nightly'
6262

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

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.18.1"
19+
__version__ = "4.19.0.nightly"

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.18.1"
47+
__version__ = "4.19.0.nightly"
4848

4949
# We need an explicit __all__ because the above won't otherwise be exported.
5050
__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.18.1",
30+
'version': "4.19.0.nightly",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

rb/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ PATH
33
specs:
44
selenium-devtools (0.122.0)
55
selenium-webdriver (~> 4.2)
6-
selenium-webdriver (4.18.1)
6+
selenium-webdriver (4.19.0.nightly)
77
base64 (~> 0.2)
88
rexml (~> 3.2, >= 3.2.5)
99
rubyzip (>= 1.2.2, < 3.0)

rb/lib/selenium/webdriver/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919

2020
module Selenium
2121
module WebDriver
22-
VERSION = '4.18.1'
22+
VERSION = '4.19.0.nightly'
2323
end # WebDriver
2424
end # Selenium

0 commit comments

Comments
 (0)