Skip to content

Commit

Permalink
Updating to nightly versions
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed May 16, 2024
1 parent 52d5e07 commit 2b1f3e8
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion dotnet/selenium-dotnet-version.bzl
Original file line number Diff line number Diff line change
@@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion java/version.bzl
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SE_VERSION = "4.21.0"
SE_VERSION = "4.22.0-SNAPSHOT"
TOOLS_JAVA_VERSION = "17"
2 changes: 1 addition & 1 deletion javascript/node/selenium-webdriver/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions javascript/node/selenium-webdriver/package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand All @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion py/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ compile_pip_requirements(
],
)

SE_VERSION = "4.21.0"
SE_VERSION = "4.22.0.dev202405160507"

BROWSER_VERSIONS = [
"v85",
Expand Down
4 changes: 2 additions & 2 deletions py/docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
# under the License.


__version__ = "4.21.0"
__version__ = "4.22.0.dev202405160507"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = [
Expand Down
2 changes: 1 addition & 1 deletion py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down
2 changes: 1 addition & 1 deletion rb/lib/selenium/webdriver/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@

module Selenium
module WebDriver
VERSION = '4.21.0'
VERSION = '4.22.0.nightly'
end # WebDriver
end # Selenium
2 changes: 1 addition & 1 deletion rust/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <selenium-developers@googlegroups.com"]
license = "Apache-2.0"
Expand All @@ -18,7 +18,7 @@ env_logger = "0.11.3"
regex = "1.10.4"
tokio = { version = "1.37.0", default-features = false, features = ["macros", "net", "rt-multi-thread"] }
tempfile = "3.10.1"
reqwest = { version = "0.12.3", default-features = false, features = [ "rustls-tls" ] }
reqwest = { version = "0.12.3", default-features = false, features = ["rustls-tls"] }
zip = "0.6.6"
directories = "5.0.1"
serde = { version = "1.0.197", features = ["derive"] }
Expand Down

0 comments on commit 2b1f3e8

Please sign in to comment.