Skip to content

Commit

Permalink
update all versions to 4.14
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Oct 10, 2023
1 parent b670032 commit e5a9634
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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"]

Expand Down
2 changes: 1 addition & 1 deletion java/version.bzl
@@ -1,2 +1,2 @@
SE_VERSION = "4.14.0-SNAPSHOT"
SE_VERSION = "4.14.0"
TOOLS_JAVA_VERSION = "17"
2 changes: 1 addition & 1 deletion 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": [
Expand Down
2 changes: 1 addition & 1 deletion py/BUILD.bazel
Expand Up @@ -19,7 +19,7 @@ compile_pip_requirements(
],
)

SE_VERSION = "4.13.0"
SE_VERSION = "4.14.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.13'
version = '4.14'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion py/docs/source/index.rst
Expand Up @@ -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.

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


__version__ = "4.13.0"
__version__ = "4.14.0"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Expand Up @@ -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__ = [
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.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(),
Expand Down
6 changes: 4 additions & 2 deletions 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)
Expand All @@ -25,13 +25,15 @@ 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)
ast (~> 2.4.1)
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)
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.14.0.nightly'
VERSION = '4.14.0'
end # WebDriver
end # Selenium

0 comments on commit e5a9634

Please sign in to comment.