Skip to content

Commit db343b9

Browse files
committed
[ci] Bumping version for nightly
[skip ci]
1 parent a1afc01 commit db343b9

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

dotnet/selenium-dotnet-version.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BUILD FILE SYNTAX: STARLARK
22

3-
SE_VERSION = "4.26.0"
3+
SE_VERSION = "4.27.0-nightly202410301443"
44
ASSEMBLY_VERSION = "4.0.0.0"
55
SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0"]
66

java/version.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SE_VERSION = "4.26.0"
1+
SE_VERSION = "4.27.0-SNAPSHOT"
22
TOOLS_JAVA_VERSION = "17"

javascript/node/selenium-webdriver/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ load("//javascript/private:browsers.bzl", "BROWSERS")
1111

1212
npm_link_all_packages(name = "node_modules")
1313

14-
VERSION = "4.26.0"
14+
VERSION = "4.27.0-nightly202410301443"
1515

1616
BROWSER_VERSIONS = [
1717
"v85",

javascript/node/selenium-webdriver/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "selenium-webdriver",
3-
"version": "4.26.0",
3+
"version": "4.27.0-nightly202410301443",
44
"description": "The official WebDriver JavaScript bindings from the Selenium project",
55
"license": "Apache-2.0",
66
"keywords": [

py/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ compile_pip_requirements(
6262
],
6363
)
6464

65-
SE_VERSION = "4.26.0"
65+
SE_VERSION = "4.27.0.dev202410301443"
6666

6767
BROWSER_VERSIONS = [
6868
"v85",

py/docs/source/conf.py

+2-2
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.26'
59+
version = '4.27'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '4.26.0'
61+
release = '4.27.0.dev202410301443'
6262

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

py/selenium/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "4.26.0"
19+
__version__ = "4.27.0.dev202410301443"

py/selenium/webdriver/__init__.py

+1-1
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.26.0"
47+
__version__ = "4.27.0.dev202410301443"
4848

4949
# We need an explicit __all__ because the above won't otherwise be exported.
5050
__all__ = [

py/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
setup_args = {
2929
'cmdclass': {'install': install},
3030
'name': 'selenium',
31-
'version': "4.26.0",
31+
'version': "4.27.0.dev202410301443",
3232
'license': 'Apache 2.0',
3333
'description': 'Official Python bindings for Selenium WebDriver.',
3434
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

rb/Gemfile.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ PATH
33
specs:
44
selenium-devtools (0.130.0)
55
selenium-webdriver (~> 4.2)
6-
selenium-webdriver (4.26.0)
6+
selenium-webdriver (4.27.0.nightly)
77
base64 (~> 0.2)
88
logger (~> 1.4)
99
rexml (~> 3.2, >= 3.2.5)
@@ -58,8 +58,8 @@ GEM
5858
rdoc (>= 4.0.0)
5959
reline (>= 0.4.2)
6060
jar-dependencies (0.4.1)
61-
json (2.7.4)
62-
json (2.7.4-java)
61+
json (2.7.5)
62+
json (2.7.5-java)
6363
language_server-protocol (3.17.0.3)
6464
listen (3.9.0)
6565
rb-fsevent (~> 0.10, >= 0.10.3)
@@ -115,7 +115,7 @@ GEM
115115
rubocop-ast (>= 1.32.2, < 2.0)
116116
ruby-progressbar (~> 1.7)
117117
unicode-display_width (>= 2.4.0, < 3.0)
118-
rubocop-ast (1.32.3)
118+
rubocop-ast (1.33.0)
119119
parser (>= 3.3.1.0)
120120
rubocop-capybara (2.21.0)
121121
rubocop (~> 1.41)
@@ -196,4 +196,4 @@ DEPENDENCIES
196196
yard (~> 0.9.11, >= 0.9.36)
197197

198198
BUNDLED WITH
199-
2.5.14
199+
2.5.6

rb/lib/selenium/webdriver/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919

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

0 commit comments

Comments
 (0)