Skip to content

Commit 86eb611

Browse files
committed
bumping all versions to 4.2.0
1 parent db6c6e8 commit 86eb611

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
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}.4"
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.1.0"
3+
SE_VERSION = "4.2.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"]

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.1.2",
3+
"version": "4.2.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
@@ -16,7 +16,7 @@ compile_pip_requirements(
1616
requirements_txt = ":requirements_lock.txt",
1717
)
1818

19-
SE_VERSION = "4.1.5"
19+
SE_VERSION = "4.2.0"
2020

2121
BROWSER_VERSIONS = [
2222
"v85",

py/docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# built documents.
5858
#
5959
# The short X.Y version.
60-
version = '4.1'
60+
version = '4.2'
6161
# The full version, including alpha/beta/rc tags.
6262
release = version
6363

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
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.1.5.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.2.0.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

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.1.5"
19+
__version__ = "4.2.0"

py/selenium/webdriver/__init__.py

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

40-
__version__ = '4.1.5'
40+
__version__ = '4.2.0'
4141

4242
# We need an explicit __all__ because the above won't otherwise be exported.
4343
__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.1.5",
30+
'version': "4.2.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919

2020
module Selenium
2121
module WebDriver
22-
VERSION = '4.1.0'
22+
VERSION = '4.2.0'
2323
end # WebDriver
2424
end # Selenium

0 commit comments

Comments
 (0)