Skip to content

Commit 3b7b377

Browse files
committed
update versions and change logs for 4.13
1 parent 6fac66e commit 3b7b377

File tree

13 files changed

+16
-15
lines changed

13 files changed

+16
-15
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

cpp/iedriver/IEDriver.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ BEGIN
6868
BEGIN
6969
VALUE "CompanyName", "Software Freedom Conservancy"
7070
VALUE "FileDescription", "Driver library for the IE driver"
71-
VALUE "FileVersion", "4.11.0.0"
71+
VALUE "FileVersion", "4.13.0.0"
7272
VALUE "InternalName", "IEDriver.dll"
7373
VALUE "LegalCopyright", "Copyright (C) 2023"
7474
VALUE "OriginalFilename", "IEDriver.dll"
7575
VALUE "ProductName", "Selenium WebDriver"
76-
VALUE "ProductVersion", "4.11.0.0"
76+
VALUE "ProductVersion", "4.13.0.0"
7777
END
7878
END
7979
BLOCK "VarFileInfo"

cpp/iedriverserver/IEDriverServer.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ BEGIN
6868
BEGIN
6969
VALUE "CompanyName", "Software Freedom Conservancy"
7070
VALUE "FileDescription", "Command line server for the IE driver"
71-
VALUE "FileVersion", "4.11.0.0"
71+
VALUE "FileVersion", "4.13.0.0"
7272
VALUE "InternalName", "IEDriverServer.exe"
7373
VALUE "LegalCopyright", "Copyright (C) 2023"
7474
VALUE "OriginalFilename", "IEDriverServer.exe"
7575
VALUE "ProductName", "Selenium WebDriver"
76-
VALUE "ProductVersion", "4.11.0.0"
76+
VALUE "ProductVersion", "4.13.0.0"
7777
END
7878
END
7979
BLOCK "VarFileInfo"

dotnet/CHANGELOG

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ v4.13.0
66
* Update cdp default command timeout in inline docs (#12707)
77
* Indicate end of output taken from selenium manager (#12744)
88
* Declare selenium manager binaries as content (#12711)
9-
* Use the lowest version of Newtonsoft.Json as dependency (#12772, #12776)
109
* Add browsing context methods for reload, screenshot and prompt
10+
* Allow user to start service before creating driver (#12816)
11+
* Remove Microsoft.IdentityModel.Tokens as dependency (#12777)
1112

1213
v4.12.4
1314
======

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.12.4"
3+
SE_VERSION = "4.13.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.13.0-SNAPSHOT"
1+
SE_VERSION = "4.13.0"
22
TOOLS_JAVA_VERSION = "17"

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.12.0",
3+
"version": "4.13.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
@@ -16,7 +16,7 @@ compile_pip_requirements(
1616
requirements_txt = ":requirements_lock.txt",
1717
)
1818

19-
SE_VERSION = "4.12.0"
19+
SE_VERSION = "4.13.0"
2020

2121
BROWSER_VERSIONS = [
2222
"v85",

py/docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = '4.12'
59+
version = '4.13'
6060
# The full version, including alpha/beta/rc tags.
6161
release = version
6262

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.12.0.jar
133+
java -jar selenium-server-4.13.0.jar
134134

135135
Then run your Python client scripts.
136136

0 commit comments

Comments
 (0)