From e5c75ed026a91a71a9a338532c4bacea5bd7a8ab Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Tue, 9 Aug 2022 12:22:08 +0200 Subject: [PATCH] Bumping version in bindings to 4.4.0 [skip ci] --- Rakefile | 2 +- dotnet/selenium-dotnet-version.bzl | 4 ++-- java/version.bzl | 2 +- javascript/node/selenium-webdriver/package-lock.json | 4 ++-- javascript/node/selenium-webdriver/package.json | 2 +- py/BUILD.bazel | 2 +- py/docs/source/conf.py | 2 +- py/docs/source/index.rst | 4 ++-- py/selenium/__init__.py | 2 +- py/selenium/webdriver/__init__.py | 2 +- py/setup.py | 2 +- rb/lib/selenium/webdriver/version.rb | 2 +- 12 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Rakefile b/Rakefile index 0cb777b9e6c65..71e13c8a83507 100644 --- a/Rakefile +++ b/Rakefile @@ -51,7 +51,7 @@ $DEBUG = true if ENV['debug'] == 'true' verbose($DEBUG) def release_version - '4.3' + '4.4' end def version diff --git a/dotnet/selenium-dotnet-version.bzl b/dotnet/selenium-dotnet-version.bzl index b56b81a7cdc8c..4afef2d24d650 100644 --- a/dotnet/selenium-dotnet-version.bzl +++ b/dotnet/selenium-dotnet-version.bzl @@ -1,6 +1,6 @@ # BUILD FILE SYNTAX: STARLARK -SE_VERSION = "4.3.0" +SE_VERSION = "4.4.0" ASSEMBLY_VERSION = "4.0.0.0" SUPPORTED_NET_FRAMEWORKS = ["net45", "net46", "net47", "net48"] SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0", "netstandard2.1", "net5.0"] @@ -13,6 +13,6 @@ SUPPORTED_DEVTOOLS_VERSIONS = [ ] ASSEMBLY_COMPANY = "Selenium Committers" -ASSEMBLY_COPYRIGHT = "Copyright © Software Freedom Conservancy 2021" +ASSEMBLY_COPYRIGHT = "Copyright © Software Freedom Conservancy 2022" ASSEMBLY_INFORMATIONAL_VERSION = "4" ASSEMBLY_PRODUCT = "Selenium" diff --git a/java/version.bzl b/java/version.bzl index 515ea2372b00b..21646e24a1111 100644 --- a/java/version.bzl +++ b/java/version.bzl @@ -1 +1 @@ -SE_VERSION = "4.3.0" +SE_VERSION = "4.4.0" diff --git a/javascript/node/selenium-webdriver/package-lock.json b/javascript/node/selenium-webdriver/package-lock.json index 9973bee6a503e..8ad29f636b882 100644 --- a/javascript/node/selenium-webdriver/package-lock.json +++ b/javascript/node/selenium-webdriver/package-lock.json @@ -1,12 +1,12 @@ { "name": "selenium-webdriver", - "version": "4.2.0", + "version": "4.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "selenium-webdriver", - "version": "4.2.0", + "version": "4.4.0", "license": "Apache-2.0", "dependencies": { "jszip": "^3.10.0", diff --git a/javascript/node/selenium-webdriver/package.json b/javascript/node/selenium-webdriver/package.json index c4df603a22605..50a085d9d0069 100644 --- a/javascript/node/selenium-webdriver/package.json +++ b/javascript/node/selenium-webdriver/package.json @@ -1,6 +1,6 @@ { "name": "selenium-webdriver", - "version": "4.3.1", + "version": "4.4.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 1e6e0ace842d9..f690de39aa437 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -15,7 +15,7 @@ compile_pip_requirements( requirements_txt = ":requirements_lock.txt", ) -SE_VERSION = "4.3.0" +SE_VERSION = "4.4.0" BROWSER_VERSIONS = [ "v85", diff --git a/py/docs/source/conf.py b/py/docs/source/conf.py index 7482a9e80a445..26f2490607bc0 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.3' +version = '4.4' # 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 7209e11f933e8..927dfd8d81e6f 100755 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -35,7 +35,7 @@ If you have `pip `_ on your system, you can simply install pip install -U selenium -Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-4.3.0.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-4.4.0.tar.gz), unarchive it, and run:: python setup.py install @@ -132,7 +132,7 @@ Download the server separately, from: https://www.selenium.dev/downloads/ Run the server from the command line:: - java -jar selenium-server-4.3.0.jar + java -jar selenium-server-4.4.0.jar Then run your Python client scripts. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 5b6e8d39d9f2f..64243248ab1c7 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.3.0" +__version__ = "4.4.0" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index f1c9332b59dcd..245ecc5ec9c8c 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -36,7 +36,7 @@ from .common.proxy import Proxy # noqa from .common.keys import Keys # noqa -__version__ = '4.3.0' +__version__ = '4.4.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 eeb0f291d3163..2e2ed3a8a1d2f 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.3.0", + 'version': "4.4.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 14579965c36d9..70e579dae8283 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.3.0' + VERSION = '4.4.0' end # WebDriver end # Selenium