Skip to content

Commit e5c75ed

Browse files
committed
Bumping version in bindings to 4.4.0
[skip ci]
1 parent 2d36450 commit e5c75ed

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ $DEBUG = true if ENV['debug'] == 'true'
5151
verbose($DEBUG)
5252

5353
def release_version
54-
'4.3'
54+
'4.4'
5555
end
5656

5757
def version

dotnet/selenium-dotnet-version.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BUILD FILE SYNTAX: STARLARK
22

3-
SE_VERSION = "4.3.0"
3+
SE_VERSION = "4.4.0"
44
ASSEMBLY_VERSION = "4.0.0.0"
55
SUPPORTED_NET_FRAMEWORKS = ["net45", "net46", "net47", "net48"]
66
SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0", "netstandard2.1", "net5.0"]
@@ -13,6 +13,6 @@ SUPPORTED_DEVTOOLS_VERSIONS = [
1313
]
1414

1515
ASSEMBLY_COMPANY = "Selenium Committers"
16-
ASSEMBLY_COPYRIGHT = "Copyright © Software Freedom Conservancy 2021"
16+
ASSEMBLY_COPYRIGHT = "Copyright © Software Freedom Conservancy 2022"
1717
ASSEMBLY_INFORMATIONAL_VERSION = "4"
1818
ASSEMBLY_PRODUCT = "Selenium"

java/version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SE_VERSION = "4.3.0"
1+
SE_VERSION = "4.4.0"

javascript/node/selenium-webdriver/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.3.1",
3+
"version": "4.4.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
@@ -15,7 +15,7 @@ compile_pip_requirements(
1515
requirements_txt = ":requirements_lock.txt",
1616
)
1717

18-
SE_VERSION = "4.3.0"
18+
SE_VERSION = "4.4.0"
1919

2020
BROWSER_VERSIONS = [
2121
"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.3'
59+
version = '4.4'
6060
# The full version, including alpha/beta/rc tags.
6161
release = version
6262

py/docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install
3535

3636
pip install -U selenium
3737

38-
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::
38+
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::
3939

4040
python setup.py install
4141

@@ -132,7 +132,7 @@ Download the server separately, from: https://www.selenium.dev/downloads/
132132

133133
Run the server from the command line::
134134

135-
java -jar selenium-server-4.3.0.jar
135+
java -jar selenium-server-4.4.0.jar
136136

137137
Then run your Python client scripts.
138138

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "4.3.0"
19+
__version__ = "4.4.0"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
from .common.proxy import Proxy # noqa
3737
from .common.keys import Keys # noqa
3838

39-
__version__ = '4.3.0'
39+
__version__ = '4.4.0'
4040

4141
# We need an explicit __all__ because the above won't otherwise be exported.
4242
__all__ = [

0 commit comments

Comments
 (0)