From e5a96349cea553359d2ad38d0e85c2b1f9928265 Mon Sep 17 00:00:00 2001 From: titusfortner Date: Mon, 9 Oct 2023 21:53:25 -0500 Subject: [PATCH] update all versions to 4.14 --- Rakefile | 2 +- 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/selenium/webdriver/__init__.py | 2 +- py/setup.py | 2 +- rb/Gemfile.lock | 6 ++++-- rb/lib/selenium/webdriver/version.rb | 2 +- 12 files changed, 15 insertions(+), 13 deletions(-) diff --git a/Rakefile b/Rakefile index ef9bd40468100..1c659c50046f8 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/dotnet/selenium-dotnet-version.bzl b/dotnet/selenium-dotnet-version.bzl index f4f5f3d4403ab..36ba3c00574c8 100644 --- a/dotnet/selenium-dotnet-version.bzl +++ b/dotnet/selenium-dotnet-version.bzl @@ -1,6 +1,6 @@ # BUILD FILE SYNTAX: STARLARK -SE_VERSION = "4.13.1" +SE_VERSION = "4.14.0" ASSEMBLY_VERSION = "4.0.0.0" SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0"] diff --git a/java/version.bzl b/java/version.bzl index 0e64fc2a1378e..efb59c30a5ff7 100644 --- a/java/version.bzl +++ b/java/version.bzl @@ -1,2 +1,2 @@ -SE_VERSION = "4.14.0-SNAPSHOT" +SE_VERSION = "4.14.0" TOOLS_JAVA_VERSION = "17" diff --git a/javascript/node/selenium-webdriver/package.json b/javascript/node/selenium-webdriver/package.json index e9fef684dab44..80d157ae941d3 100644 --- a/javascript/node/selenium-webdriver/package.json +++ b/javascript/node/selenium-webdriver/package.json @@ -1,6 +1,6 @@ { "name": "selenium-webdriver", - "version": "4.13.0", + "version": "4.14.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 d186bad258f3b..24f269499b99f 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -19,7 +19,7 @@ compile_pip_requirements( ], ) -SE_VERSION = "4.13.0" +SE_VERSION = "4.14.0" BROWSER_VERSIONS = [ "v85", diff --git a/py/docs/source/conf.py b/py/docs/source/conf.py index 8962390d53c2a..f6c67caaba325 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.13' +version = '4.14' # 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 1896746e7e435..f84868eeffde1 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.13.0.jar + java -jar selenium-server-4.14.0.jar Then run your Python client scripts. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 4db9cac581d67..cefcb03b436ea 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.13.0" +__version__ = "4.14.0" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index a2fc695ae937a..828c6f8c5f44c 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -44,7 +44,7 @@ from .wpewebkit.service import Service as WPEWebKitService # noqa from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa -__version__ = "4.12.0" +__version__ = "4.14.0" # We need an explicit __all__ because the above won't otherwise be exported. __all__ = [ diff --git a/py/setup.py b/py/setup.py index 4f7c8b59919f9..2531b9981a7a7 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.13.0", + 'version': "4.14.0", 'license': 'Apache 2.0', 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(), diff --git a/rb/Gemfile.lock b/rb/Gemfile.lock index 81d4f881967cf..016d2fa201657 100644 --- a/rb/Gemfile.lock +++ b/rb/Gemfile.lock @@ -1,9 +1,9 @@ PATH remote: . specs: - selenium-devtools (0.117.0) + selenium-devtools (0.118.0) selenium-webdriver (~> 4.2) - selenium-webdriver (4.14.0.nightly) + selenium-webdriver (4.14.0) rexml (~> 3.2, >= 3.2.5) rubyzip (>= 1.2.2, < 3.0) websocket (~> 1.0) @@ -25,6 +25,7 @@ GEM irb (1.7.0) reline (>= 0.3.0) json (2.6.3) + json (2.6.3-java) language_server-protocol (3.17.0.3) parallel (1.23.0) parser (3.2.2.3) @@ -32,6 +33,7 @@ GEM racc public_suffix (5.0.1) racc (1.7.1) + racc (1.7.1-java) rack (2.2.7) rainbow (3.1.1) rake (13.0.6) diff --git a/rb/lib/selenium/webdriver/version.rb b/rb/lib/selenium/webdriver/version.rb index fa3eb09007867..3b0713d1424e0 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.14.0.nightly' + VERSION = '4.14.0' end # WebDriver end # Selenium