diff --git a/dotnet/selenium-dotnet-version.bzl b/dotnet/selenium-dotnet-version.bzl index 312dfc17c7463..8dbd8cd47a97d 100644 --- a/dotnet/selenium-dotnet-version.bzl +++ b/dotnet/selenium-dotnet-version.bzl @@ -1,6 +1,6 @@ # BUILD FILE SYNTAX: STARLARK -SE_VERSION = "4.21.0" +SE_VERSION = "4.22.0-nightly202405160513" ASSEMBLY_VERSION = "4.0.0.0" SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0"] diff --git a/java/version.bzl b/java/version.bzl index a1513b1db28ae..2b60956233b3d 100644 --- a/java/version.bzl +++ b/java/version.bzl @@ -1,2 +1,2 @@ -SE_VERSION = "4.21.0" +SE_VERSION = "4.22.0-SNAPSHOT" TOOLS_JAVA_VERSION = "17" diff --git a/javascript/node/selenium-webdriver/BUILD.bazel b/javascript/node/selenium-webdriver/BUILD.bazel index 714a2ebfb4e39..da4b876134347 100644 --- a/javascript/node/selenium-webdriver/BUILD.bazel +++ b/javascript/node/selenium-webdriver/BUILD.bazel @@ -10,7 +10,7 @@ load("//javascript:defs.bzl", "mocha_test") npm_link_all_packages(name = "node_modules") -VERSION = "4.21.0" +VERSION = "4.22.0-nightly202405160507" BROWSER_VERSIONS = [ "v85", diff --git a/javascript/node/selenium-webdriver/package.json b/javascript/node/selenium-webdriver/package.json index 71e0e23fb635b..2b8c121e5871c 100644 --- a/javascript/node/selenium-webdriver/package.json +++ b/javascript/node/selenium-webdriver/package.json @@ -1,6 +1,6 @@ { "name": "selenium-webdriver", - "version": "4.21.0", + "version": "4.22.0-nightly202405160507", "description": "The official WebDriver JavaScript bindings from the Selenium project", "license": "Apache-2.0", "keywords": [ @@ -20,7 +20,7 @@ "url": "https://github.com/SeleniumHQ/selenium.git" }, "engines": { - "node": ">= 14.21.0" + "node": ">= 14.22.0-nightly202405160507" }, "dependencies": { "jszip": "^3.10.1", diff --git a/package-lock.json b/package-lock.json index 991c9ed1b04ae..36a9d8ed2ef3b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1874,7 +1874,7 @@ "license": "ISC" }, "javascript/node/selenium-webdriver": { - "version": "4.21.0", + "version": "4.22.0-nightly202405160507", "license": "Apache-2.0", "dependencies": { "jszip": "^3.10.1", @@ -1900,7 +1900,7 @@ "sinon": "^17.0.1" }, "engines": { - "node": ">= 14.21.0" + "node": ">= 14.22.0-nightly202405160507" } }, "javascript/node/selenium-webdriver/node_modules/@eslint/eslintrc": { @@ -9002,7 +9002,7 @@ "update-browserslist-db": "cli.js" }, "peerDependencies": { - "browserslist": ">= 4.21.0" + "browserslist": ">= 4.22.0-nightly202405160507" } }, "node_modules/uri-js": { diff --git a/py/BUILD.bazel b/py/BUILD.bazel index e1816a517f397..48b128154d3d2 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -40,7 +40,7 @@ compile_pip_requirements( ], ) -SE_VERSION = "4.21.0" +SE_VERSION = "4.22.0.dev202405160507" BROWSER_VERSIONS = [ "v85", diff --git a/py/docs/source/conf.py b/py/docs/source/conf.py index a3c3c65d5f57d..81091acc4f468 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.21' +version = '4.22' # The full version, including alpha/beta/rc tags. -release = '4.21.0' +release = '4.22.0.dev202405160507' # 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 74cb2777367c6..a3ce25db647a9 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.21.0" +__version__ = "4.22.0.dev202405160507" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index dd31331a2f45d..dc9eeaaf79076 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.21.0" +__version__ = "4.22.0.dev202405160507" # 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 697301d371927..0363166bbaa4c 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.21.0", + 'version': "4.22.0.dev202405160507", 'license': 'Apache 2.0', 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(), diff --git a/rb/lib/selenium/webdriver/version.rb b/rb/lib/selenium/webdriver/version.rb index ae5674c3ea5df..d8085e614f35f 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.21.0' + VERSION = '4.22.0.nightly' end # WebDriver end # Selenium diff --git a/rust/BUILD.bazel b/rust/BUILD.bazel index 6523c20747e5f..f3c790285fd11 100644 --- a/rust/BUILD.bazel +++ b/rust/BUILD.bazel @@ -77,7 +77,7 @@ rust_binary( name = "selenium-manager", srcs = ["src/main.rs"], edition = "2021", - version = "0.4.21", + version = "0.4.22-nightly", visibility = ["//visibility:public"], deps = [ ":selenium_manager", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index ec24e988efa00..ad401b54a6a6e 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "selenium-manager" -version = "0.4.21" # don't forget to update rust/BUILD.bazel +version = "0.4.22-nightly" # don't forget to update rust/BUILD.bazel edition = "2021" authors = ["Selenium