From 3b7b377d58b62931438bb079bc44a39a182a4194 Mon Sep 17 00:00:00 2001 From: titusfortner Date: Mon, 25 Sep 2023 13:10:51 -0500 Subject: [PATCH] update versions and change logs for 4.13 --- Rakefile | 2 +- cpp/iedriver/IEDriver.rc | 4 ++-- cpp/iedriverserver/IEDriverServer.rc | 4 ++-- dotnet/CHANGELOG | 3 ++- dotnet/selenium-dotnet-version.bzl | 2 +- java/version.bzl | 2 +- javascript/node/selenium-webdriver/package.json | 2 +- py/BUILD.bazel | 2 +- py/docs/source/conf.py | 2 +- py/docs/source/index.rst | 2 +- py/selenium/__init__.py | 2 +- py/setup.py | 2 +- rb/lib/selenium/webdriver/version.rb | 2 +- 13 files changed, 16 insertions(+), 15 deletions(-) diff --git a/Rakefile b/Rakefile index 0a2b77e7a1d2a..2b7b7cc1e8625 100644 --- a/Rakefile +++ b/Rakefile @@ -55,7 +55,7 @@ def release_version end def version - "#{release_version}.0-SNAPSHOT" + "#{release_version}.0" end # The build system used by webdriver is layered on top of rake, and we call it diff --git a/cpp/iedriver/IEDriver.rc b/cpp/iedriver/IEDriver.rc index 98938d2f85953..6a833c12585fc 100644 --- a/cpp/iedriver/IEDriver.rc +++ b/cpp/iedriver/IEDriver.rc @@ -68,12 +68,12 @@ BEGIN BEGIN VALUE "CompanyName", "Software Freedom Conservancy" VALUE "FileDescription", "Driver library for the IE driver" - VALUE "FileVersion", "4.11.0.0" + VALUE "FileVersion", "4.13.0.0" VALUE "InternalName", "IEDriver.dll" VALUE "LegalCopyright", "Copyright (C) 2023" VALUE "OriginalFilename", "IEDriver.dll" VALUE "ProductName", "Selenium WebDriver" - VALUE "ProductVersion", "4.11.0.0" + VALUE "ProductVersion", "4.13.0.0" END END BLOCK "VarFileInfo" diff --git a/cpp/iedriverserver/IEDriverServer.rc b/cpp/iedriverserver/IEDriverServer.rc index a6dbd400c7c56..d76d0cd4662c4 100644 --- a/cpp/iedriverserver/IEDriverServer.rc +++ b/cpp/iedriverserver/IEDriverServer.rc @@ -68,12 +68,12 @@ BEGIN BEGIN VALUE "CompanyName", "Software Freedom Conservancy" VALUE "FileDescription", "Command line server for the IE driver" - VALUE "FileVersion", "4.11.0.0" + VALUE "FileVersion", "4.13.0.0" VALUE "InternalName", "IEDriverServer.exe" VALUE "LegalCopyright", "Copyright (C) 2023" VALUE "OriginalFilename", "IEDriverServer.exe" VALUE "ProductName", "Selenium WebDriver" - VALUE "ProductVersion", "4.11.0.0" + VALUE "ProductVersion", "4.13.0.0" END END BLOCK "VarFileInfo" diff --git a/dotnet/CHANGELOG b/dotnet/CHANGELOG index 32af179b852bf..555c1eff758c7 100644 --- a/dotnet/CHANGELOG +++ b/dotnet/CHANGELOG @@ -6,8 +6,9 @@ v4.13.0 * Update cdp default command timeout in inline docs (#12707) * Indicate end of output taken from selenium manager (#12744) * Declare selenium manager binaries as content (#12711) -* Use the lowest version of Newtonsoft.Json as dependency (#12772, #12776) * Add browsing context methods for reload, screenshot and prompt +* Allow user to start service before creating driver (#12816) +* Remove Microsoft.IdentityModel.Tokens as dependency (#12777) v4.12.4 ====== diff --git a/dotnet/selenium-dotnet-version.bzl b/dotnet/selenium-dotnet-version.bzl index 1d4ef18c6b488..6d90f6ea0f549 100644 --- a/dotnet/selenium-dotnet-version.bzl +++ b/dotnet/selenium-dotnet-version.bzl @@ -1,6 +1,6 @@ # BUILD FILE SYNTAX: STARLARK -SE_VERSION = "4.12.4" +SE_VERSION = "4.13.0" ASSEMBLY_VERSION = "4.0.0.0" SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0"] diff --git a/java/version.bzl b/java/version.bzl index 44a6c47adddf6..713e958c9b0d3 100644 --- a/java/version.bzl +++ b/java/version.bzl @@ -1,2 +1,2 @@ -SE_VERSION = "4.13.0-SNAPSHOT" +SE_VERSION = "4.13.0" TOOLS_JAVA_VERSION = "17" diff --git a/javascript/node/selenium-webdriver/package.json b/javascript/node/selenium-webdriver/package.json index 444a215d1cd71..b5eef076a2aa5 100644 --- a/javascript/node/selenium-webdriver/package.json +++ b/javascript/node/selenium-webdriver/package.json @@ -1,6 +1,6 @@ { "name": "selenium-webdriver", - "version": "4.12.0", + "version": "4.13.0", "description": "The official WebDriver JavaScript bindings from the Selenium project", "license": "Apache-2.0", "keywords": [ diff --git a/py/BUILD.bazel b/py/BUILD.bazel index 5b695674d3307..c96518a70aa37 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -16,7 +16,7 @@ compile_pip_requirements( requirements_txt = ":requirements_lock.txt", ) -SE_VERSION = "4.12.0" +SE_VERSION = "4.13.0" BROWSER_VERSIONS = [ "v85", diff --git a/py/docs/source/conf.py b/py/docs/source/conf.py index fd3b85d97ea26..8962390d53c2a 100644 --- a/py/docs/source/conf.py +++ b/py/docs/source/conf.py @@ -56,7 +56,7 @@ # built documents. # # The short X.Y version. -version = '4.12' +version = '4.13' # The full version, including alpha/beta/rc tags. release = version diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index 8015f5ec2cd2f..1896746e7e435 100755 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -130,7 +130,7 @@ Download the server separately, from: https://www.selenium.dev/downloads/ Run the server from the command line:: - java -jar selenium-server-4.12.0.jar + java -jar selenium-server-4.13.0.jar Then run your Python client scripts. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index ebcc66e3e7432..4db9cac581d67 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.12.0" +__version__ = "4.13.0" diff --git a/py/setup.py b/py/setup.py index af6e0047595d6..4f7c8b59919f9 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.12.0", + 'version': "4.13.0", '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 96eab9bf694c9..5d695a986cf99 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.12.0' + VERSION = '4.13.0' end # WebDriver end # Selenium