Skip to content

Commit e5a9634

Browse files
committed
update all versions to 4.14
1 parent b670032 commit e5a9634

File tree

12 files changed

+15
-13
lines changed

12 files changed

+15
-13
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def release_version
5555
end
5656

5757
def version
58-
"#{release_version}.0-SNAPSHOT"
58+
"#{release_version}.0"
5959
end
6060

6161
# The build system used by webdriver is layered on top of rake, and we call it

dotnet/selenium-dotnet-version.bzl

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

3-
SE_VERSION = "4.13.1"
3+
SE_VERSION = "4.14.0"
44
ASSEMBLY_VERSION = "4.0.0.0"
55
SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0"]
66

java/version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SE_VERSION = "4.14.0-SNAPSHOT"
1+
SE_VERSION = "4.14.0"
22
TOOLS_JAVA_VERSION = "17"

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.13.0",
3+
"version": "4.14.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
@@ -19,7 +19,7 @@ compile_pip_requirements(
1919
],
2020
)
2121

22-
SE_VERSION = "4.13.0"
22+
SE_VERSION = "4.14.0"
2323

2424
BROWSER_VERSIONS = [
2525
"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.13'
59+
version = '4.14'
6060
# The full version, including alpha/beta/rc tags.
6161
release = version
6262

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Download the server separately, from: https://www.selenium.dev/downloads/
130130

131131
Run the server from the command line::
132132

133-
java -jar selenium-server-4.13.0.jar
133+
java -jar selenium-server-4.14.0.jar
134134

135135
Then run your Python client scripts.
136136

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.13.0"
19+
__version__ = "4.14.0"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
from .wpewebkit.service import Service as WPEWebKitService # noqa
4545
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
4646

47-
__version__ = "4.12.0"
47+
__version__ = "4.14.0"
4848

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

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
setup_args = {
2828
'cmdclass': {'install': install},
2929
'name': 'selenium',
30-
'version': "4.13.0",
30+
'version': "4.14.0",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

0 commit comments

Comments
 (0)