Skip to content

Commit 2d493a8

Browse files
committed
Bump selenium version to 3.7.0
Gearing up for a new and shiny release.
1 parent 94fe542 commit 2d493a8

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ end
4545
verbose($DEBUG)
4646

4747
def release_version
48-
"3.6"
48+
"3.7"
4949
end
5050

5151
def version

dotnet/selenium-dotnet-version.bzl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# BUILD FILE SYNTAX: SKYLARK
22

3-
SE_VERSION = '3.6.0'
4-
ASSEMBLY_VERSION = '3.6.0.0'
3+
SE_VERSION = '3.7.0'
4+
ASSEMBLY_VERSION = '3.7.0.0'

javascript/firefox-driver/extension/install.rdf

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<Description about="urn:mozilla:install-manifest">
55
<em:id>[email protected]</em:id>
6-
<em:version>3.6.0</em:version>
6+
<em:version>3.7.0</em:version>
77
<em:type>2</em:type>
88
<em:name>Firefox WebDriver</em:name>
99
<em:description>WebDriver implementation for Firefox</em:description>

py/docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '3.6'
58+
version = '3.7'
5959
# The full version, including alpha/beta/rc tags.
6060
release = version
6161

py/docs/source/index.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-3.6.0.tar.gz), unarchive it, and run::
39+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-3.7.0.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

@@ -128,11 +128,11 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
128128

129129
However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).
130130

131-
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.6/selenium-server-standalone-3.6.0.jar
131+
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.7/selenium-server-standalone-3.7.0.jar
132132

133133
Run the server from the command line::
134134

135-
java -jar selenium-server-standalone-3.6.0.jar
135+
java -jar selenium-server-standalone-3.7.0.jar
136136

137137
Then run your Python client scripts.
138138

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__ = "3.6.0"
19+
__version__ = "3.7.0"

py/selenium/webdriver/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
from .common.touch_actions import TouchActions # noqa
3333
from .common.proxy import Proxy # noqa
3434

35-
__version__ = '3.6.0'
35+
__version__ = '3.7.0'

py/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
setup_args = {
3030
'cmdclass': {'install': install},
3131
'name': 'selenium',
32-
'version': "3.6.0",
32+
'version': "3.7.0",
3333
'license': 'Apache 2.0',
3434
'description': 'Python bindings for Selenium',
3535
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

rb/selenium-webdriver.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ raise "cwd must be #{root} when reading gemspec" if root != Dir.pwd
33

44
Gem::Specification.new do |s|
55
s.name = 'selenium-webdriver'
6-
s.version = '3.6.0'
6+
s.version = '3.7.0'
77

88
s.authors = ['Alex Rodionov', 'Titus Fortner']
99

selenium-version.bzl

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

3-
SE_VERSION = '3.6.0'
3+
SE_VERSION = '3.7.0'
44

0 commit comments

Comments
 (0)