Skip to content

Commit 267030a

Browse files
committed
Bumping version to 4.8.0
1 parent 634d19a commit 267030a

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ $DEBUG = true if ENV['debug'] == 'true'
5151
verbose($DEBUG)
5252

5353
def release_version
54-
'4.7'
54+
'4.8'
5555
end
5656

5757
def version
58-
"#{release_version}.2"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BUILD FILE SYNTAX: STARLARK
22

3-
SE_VERSION = "4.7.0"
3+
SE_VERSION = "4.8.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", "net6.0"]

java/version.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SE_VERSION = "4.7.2"
1+
SE_VERSION = "4.8.0"

javascript/node/selenium-webdriver/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "selenium-webdriver",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"description": "The official WebDriver JavaScript bindings from the Selenium project",
55
"license": "Apache-2.0",
66
"keywords": [

py/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ compile_pip_requirements(
1616
requirements_txt = ":requirements_lock.txt",
1717
)
1818

19-
SE_VERSION = "4.7.2"
19+
SE_VERSION = "4.8.0"
2020

2121
BROWSER_VERSIONS = [
2222
"v85",

py/docs/source/conf.py

+1-1
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.7'
59+
version = '4.8'
6060
# The full version, including alpha/beta/rc tags.
6161
release = version
6262

py/docs/source/index.rst

+1-1
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.7.1.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.8.0.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

py/selenium/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "4.7.2"
19+
__version__ = "4.8.0"

py/selenium/webdriver/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
from .wpewebkit.options import Options as WPEWebKitOptions # noqa
3737
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
3838

39-
__version__ = "4.7.2"
39+
__version__ = "4.8.0"
4040

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

py/setup.py

+1-1
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.7.2",
30+
'version': "4.8.0",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

rb/lib/selenium/webdriver/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919

2020
module Selenium
2121
module WebDriver
22-
VERSION = '4.7.1'
22+
VERSION = '4.8.0'
2323
end # WebDriver
2424
end # Selenium

0 commit comments

Comments
 (0)