From 989b0ca679960a3a6f5cd15f3227eac9ff50fe81 Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Tue, 20 Feb 2024 00:44:31 +0000 Subject: [PATCH] [build] Bumping versions for Nightly --- java/version.bzl | 2 +- py/BUILD.bazel | 2 +- py/docs/source/conf.py | 4 ++-- py/selenium/__init__.py | 2 +- py/selenium/webdriver/__init__.py | 2 +- py/setup.py | 2 +- rb/Gemfile.lock | 2 +- rb/lib/selenium/webdriver/version.rb | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/java/version.bzl b/java/version.bzl index 7cb4e697e656b..86a5ae9265944 100644 --- a/java/version.bzl +++ b/java/version.bzl @@ -1,2 +1,2 @@ -SE_VERSION = "4.18.1" +SE_VERSION = "4.19.0-SNAPSHOT" TOOLS_JAVA_VERSION = "17" diff --git a/py/BUILD.bazel b/py/BUILD.bazel index 636a9c0a5f1d8..0358708996946 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -36,7 +36,7 @@ compile_pip_requirements( ], ) -SE_VERSION = "4.18.1" +SE_VERSION = "4.19.0.nightly" BROWSER_VERSIONS = [ "v85", diff --git a/py/docs/source/conf.py b/py/docs/source/conf.py index b96f7374f2088..fe530261c8caa 100644 --- a/py/docs/source/conf.py +++ b/py/docs/source/conf.py @@ -56,9 +56,9 @@ # built documents. # # The short X.Y version. -version = '4.18' +version = '4.19' # The full version, including alpha/beta/rc tags. -release = '4.18.1' +release = '4.19.0.nightly' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 4e5521633cb20..7e848ae47b7f7 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.18.1" +__version__ = "4.19.0.nightly" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index ae82066fee80b..7ce95dbd0693d 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -44,7 +44,7 @@ from .wpewebkit.service import Service as WPEWebKitService # noqa from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa -__version__ = "4.18.1" +__version__ = "4.19.0.nightly" # We need an explicit __all__ because the above won't otherwise be exported. __all__ = [ diff --git a/py/setup.py b/py/setup.py index 3ffcfc9727a09..ae4c5c3644b41 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.18.1", + 'version': "4.19.0.nightly", 'license': 'Apache 2.0', 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(), diff --git a/rb/Gemfile.lock b/rb/Gemfile.lock index 39d75d3ea2f89..7e35e140b423c 100644 --- a/rb/Gemfile.lock +++ b/rb/Gemfile.lock @@ -3,7 +3,7 @@ PATH specs: selenium-devtools (0.122.0) selenium-webdriver (~> 4.2) - selenium-webdriver (4.18.1) + selenium-webdriver (4.19.0.nightly) base64 (~> 0.2) rexml (~> 3.2, >= 3.2.5) rubyzip (>= 1.2.2, < 3.0) diff --git a/rb/lib/selenium/webdriver/version.rb b/rb/lib/selenium/webdriver/version.rb index d56ea914f5bd4..b6c4fceecb5fa 100644 --- a/rb/lib/selenium/webdriver/version.rb +++ b/rb/lib/selenium/webdriver/version.rb @@ -19,6 +19,6 @@ module Selenium module WebDriver - VERSION = '4.18.1' + VERSION = '4.19.0.nightly' end # WebDriver end # Selenium