diff --git a/dotnet/selenium-dotnet-version.bzl b/dotnet/selenium-dotnet-version.bzl index 94cd7ea71b924..24b882ed1e101 100644 --- a/dotnet/selenium-dotnet-version.bzl +++ b/dotnet/selenium-dotnet-version.bzl @@ -1,6 +1,6 @@ # BUILD FILE SYNTAX: STARLARK -SE_VERSION = "4.24.0" +SE_VERSION = "4.25.0-nightly202408281539" ASSEMBLY_VERSION = "4.0.0.0" SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0"] diff --git a/java/version.bzl b/java/version.bzl index 327329ede34cb..51fb4a9c7246e 100644 --- a/java/version.bzl +++ b/java/version.bzl @@ -1,2 +1,2 @@ -SE_VERSION = "4.24.0" +SE_VERSION = "4.25.0-SNAPSHOT" TOOLS_JAVA_VERSION = "17" diff --git a/javascript/node/selenium-webdriver/BUILD.bazel b/javascript/node/selenium-webdriver/BUILD.bazel index 889ae8bb9f925..c56b8a7ccc78a 100644 --- a/javascript/node/selenium-webdriver/BUILD.bazel +++ b/javascript/node/selenium-webdriver/BUILD.bazel @@ -11,7 +11,7 @@ load("//javascript/private:browsers.bzl", "BROWSERS") npm_link_all_packages(name = "node_modules") -VERSION = "4.24.0" +VERSION = "4.25.0-nightly202408281539" BROWSER_VERSIONS = [ "v85", diff --git a/javascript/node/selenium-webdriver/package.json b/javascript/node/selenium-webdriver/package.json index b9853dca8b21b..ae531347d960c 100644 --- a/javascript/node/selenium-webdriver/package.json +++ b/javascript/node/selenium-webdriver/package.json @@ -1,6 +1,6 @@ { "name": "selenium-webdriver", - "version": "4.24.0", + "version": "4.25.0-nightly202408281539", "description": "The official WebDriver JavaScript bindings from the Selenium project", "license": "Apache-2.0", "keywords": [ diff --git a/package-lock.json b/package-lock.json index 003c567e960c1..bde2e3586d80a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1707,7 +1707,7 @@ } }, "javascript/node/selenium-webdriver": { - "version": "4.24.0", + "version": "4.25.0-nightly202408281539", "license": "Apache-2.0", "dependencies": { "@bazel/runfiles": "^5.8.1", diff --git a/py/BUILD.bazel b/py/BUILD.bazel index d0ee2c580081d..19352cd37c5c7 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -62,7 +62,7 @@ compile_pip_requirements( ], ) -SE_VERSION = "4.24.0" +SE_VERSION = "4.25.0.dev202408281539" BROWSER_VERSIONS = [ "v85", diff --git a/py/docs/source/conf.py b/py/docs/source/conf.py index c30c8e8590804..dadf9708dc574 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.24' +version = '4.25' # The full version, including alpha/beta/rc tags. -release = '4.24.0' +release = '4.25.0.dev202408281539' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index fe8cdea410fc3..4023fd3079aae 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.24.0" +__version__ = "4.25.0.dev202408281539" # 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 3e7b6b83bb077..ba78a9a66ce8d 100755 --- a/py/setup.py +++ b/py/setup.py @@ -28,7 +28,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.24.0", + 'version': "4.25.0.dev202408281539", 'license': 'Apache 2.0', 'description': 'Official Python bindings for Selenium WebDriver.', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(), diff --git a/rb/Gemfile.lock b/rb/Gemfile.lock index 3470da038a860..4897afdf652ec 100644 --- a/rb/Gemfile.lock +++ b/rb/Gemfile.lock @@ -3,7 +3,7 @@ PATH specs: selenium-devtools (0.128.0) selenium-webdriver (~> 4.2) - selenium-webdriver (4.24.0) + selenium-webdriver (4.25.0.nightly) base64 (~> 0.2) logger (~> 1.4) rexml (~> 3.2, >= 3.2.5) @@ -36,7 +36,7 @@ GEM bigdecimal rexml csv (3.3.0) - curb (1.0.5) + curb (1.0.6) debug (1.9.2) irb (~> 1.10) reline (>= 0.3.8) diff --git a/rb/lib/selenium/webdriver/version.rb b/rb/lib/selenium/webdriver/version.rb index 6fb7d53806e16..d2220756cc1b7 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.24.0' + VERSION = '4.25.0.nightly' end # WebDriver end # Selenium