Skip to content

Commit 1d14b55

Browse files
committed
update versions for 4.15 release
1 parent f74e0dd commit 1d14b55

File tree

10 files changed

+14
-12
lines changed

10 files changed

+14
-12
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def release_version
5555
end
5656

5757
def version
58-
"#{release_version}.0-SNAPSHOT"
58+
"#{release_version}.0"
5959
end
6060

6161
# The build system used by webdriver is layered on top of rake, and we call it

dotnet/selenium-dotnet-version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BUILD FILE SYNTAX: STARLARK
22

3-
SE_VERSION = "4.14.1"
3+
SE_VERSION = "4.15.0"
44
ASSEMBLY_VERSION = "4.0.0.0"
55
SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0"]
66

java/version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SE_VERSION = "4.15.0-SNAPSHOT"
1+
SE_VERSION = "4.15.0"
22
TOOLS_JAVA_VERSION = "17"

javascript/node/selenium-webdriver/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/node/selenium-webdriver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "selenium-webdriver",
3-
"version": "4.14.0",
3+
"version": "4.15.0",
44
"description": "The official WebDriver JavaScript bindings from the Selenium project",
55
"license": "Apache-2.0",
66
"keywords": [

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ compile_pip_requirements(
1919
],
2020
)
2121

22-
SE_VERSION = "4.14.0"
22+
SE_VERSION = "4.15.0"
2323

2424
BROWSER_VERSIONS = [
2525
"v85",

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Download the server separately, from: https://www.selenium.dev/downloads/
130130

131131
Run the server from the command line::
132132

133-
java -jar selenium-server-4.14.0.jar
133+
java -jar selenium-server-4.15.0.jar
134134

135135
Then run your Python client scripts.
136136

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
setup_args = {
2828
'cmdclass': {'install': install},
2929
'name': 'selenium',
30-
'version': "4.14.0",
30+
'version': "4.15.0",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

rb/Gemfile.lock

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PATH
22
remote: .
33
specs:
4-
selenium-devtools (0.118.0)
4+
selenium-devtools (0.119.0)
55
selenium-webdriver (~> 4.2)
6-
selenium-webdriver (4.15.0.nightly)
6+
selenium-webdriver (4.15.0)
77
rexml (~> 3.2, >= 3.2.5)
88
rubyzip (>= 1.2.2, < 3.0)
99
websocket (~> 1.0)
@@ -25,13 +25,15 @@ GEM
2525
irb (1.7.0)
2626
reline (>= 0.3.0)
2727
json (2.6.3)
28+
json (2.6.3-java)
2829
language_server-protocol (3.17.0.3)
2930
parallel (1.23.0)
3031
parser (3.2.2.3)
3132
ast (~> 2.4.1)
3233
racc
3334
public_suffix (5.0.1)
3435
racc (1.7.1)
36+
racc (1.7.1-java)
3537
rack (2.2.7)
3638
rainbow (3.1.1)
3739
rake (13.0.6)

rb/lib/selenium/webdriver/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919

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

0 commit comments

Comments
 (0)