Skip to content

Commit 72cb7fa

Browse files
committed
Bump the Selenium version to 3.5
We still have some work to do before release, but we're closing in on it.
1 parent 18fbc25 commit 72cb7fa

File tree

12 files changed

+20
-20
lines changed

12 files changed

+20
-20
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ end
4545
verbose($DEBUG)
4646

4747
def release_version
48-
"3.4"
48+
"3.5"
4949
end
5050

5151
def version

SELENIUM_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SE_VERSION = '3.4.0'
1+
SE_VERSION = '3.5.0'
22

dotnet/src/support/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@
4949
// Minor Version
5050
// Build Number
5151
// Revision
52-
[assembly: AssemblyVersion("3.4.0.0")]
53-
[assembly: AssemblyFileVersion("3.4.0.0")]
54-
[assembly: AssemblyInformationalVersion("3.4.0")]
52+
[assembly: AssemblyVersion("3.5.0.0")]
53+
[assembly: AssemblyFileVersion("3.5.0.0")]
54+
[assembly: AssemblyInformationalVersion("3.5.0")]

dotnet/src/webdriver/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@
4949
// Minor Version
5050
// Build Number
5151
// Revision
52-
[assembly: AssemblyVersion("3.4.0.0")]
53-
[assembly: AssemblyFileVersion("3.4.0.0")]
54-
[assembly: AssemblyInformationalVersion("3.4.0")]
52+
[assembly: AssemblyVersion("3.5.0.0")]
53+
[assembly: AssemblyFileVersion("3.5.0.0")]
54+
[assembly: AssemblyInformationalVersion("3.5.0")]

dotnet/src/webdriverbackedselenium/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@
4949
// Minor Version
5050
// Build Number
5151
// Revision
52-
[assembly: AssemblyVersion("3.4.0.0")]
53-
[assembly: AssemblyFileVersion("3.4.0.0")]
54-
[assembly: AssemblyInformationalVersion("3.4.0")]
52+
[assembly: AssemblyVersion("3.5.0.0")]
53+
[assembly: AssemblyFileVersion("3.5.0.0")]
54+
[assembly: AssemblyInformationalVersion("3.5.0")]

javascript/firefox-driver/extension/install.rdf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<Description about="urn:mozilla:install-manifest">
55
<em:id>fxdriver@googlecode.com</em:id>
6-
<em:version>3.4.0</em:version>
6+
<em:version>3.5.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>

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": "3.4.0",
3+
"version": "3.5.0",
44
"description": "The official WebDriver JavaScript bindings from the Selenium project",
55
"license": "Apache-2.0",
66
"keywords": [

py/docs/source/conf.py

Lines changed: 1 addition & 1 deletion
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.4'
58+
version = '3.5'
5959
# The full version, including alpha/beta/rc tags.
6060
release = version
6161

py/docs/source/index.rst

Lines changed: 3 additions & 3 deletions
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.4.3.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.5.0.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

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

128128
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).
129129

130-
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.4/selenium-server-standalone-3.4.0.jar
130+
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.5/selenium-server-standalone-3.5.0.jar
131131

132132
Run the server from the command line::
133133

134-
java -jar selenium-server-standalone-3.4.0.jar
134+
java -jar selenium-server-standalone-3.5.0.jar
135135

136136
Then run your Python client scripts.
137137

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
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.4.3'
35+
__version__ = '3.5.0'

0 commit comments

Comments
 (0)