Skip to content

Commit

Permalink
Bumping version in bindings to 4.4.0
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
diemol committed Aug 9, 2022
1 parent 2d36450 commit e5c75ed
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -51,7 +51,7 @@ $DEBUG = true if ENV['debug'] == 'true'
verbose($DEBUG)

def release_version
'4.3'
'4.4'
end

def version
Expand Down
4 changes: 2 additions & 2 deletions 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"]
Expand All @@ -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"
2 changes: 1 addition & 1 deletion java/version.bzl
@@ -1 +1 @@
SE_VERSION = "4.3.0"
SE_VERSION = "4.4.0"
4 changes: 2 additions & 2 deletions javascript/node/selenium-webdriver/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 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": [
Expand Down
2 changes: 1 addition & 1 deletion py/BUILD.bazel
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion py/docs/source/conf.py
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions py/docs/source/index.rst
Expand Up @@ -35,7 +35,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install

pip install -U selenium

Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.3.0.tar.gz), unarchive it, and run::
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.4.0.tar.gz), unarchive it, and run::

python setup.py install

Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Expand Up @@ -16,4 +16,4 @@
# under the License.


__version__ = "4.3.0"
__version__ = "4.4.0"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Expand Up @@ -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__ = [
Expand Down
2 changes: 1 addition & 1 deletion py/setup.py
Expand Up @@ -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(),
Expand Down
2 changes: 1 addition & 1 deletion rb/lib/selenium/webdriver/version.rb
Expand Up @@ -19,6 +19,6 @@

module Selenium
module WebDriver
VERSION = '4.3.0'
VERSION = '4.4.0'
end # WebDriver
end # Selenium

0 comments on commit e5c75ed

Please sign in to comment.