Skip to content

Commit 2a7d23d

Browse files
committed
Bump version to an approximation of Π
1 parent ad11102 commit 2a7d23d

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

Rakefile

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

4848
def release_version
49-
"3.13"
49+
"3.14"
5050
end
5151

5252
def version

dotnet/selenium-dotnet-version.bzl

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

3-
SE_VERSION = '3.13.1'
4-
ASSEMBLY_VERSION = '3.13.1.0'
3+
SE_VERSION = '3.14.0'
4+
ASSEMBLY_VERSION = '3.14.0.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>[email protected]</em:id>
6-
<em:version>3.13.0</em:version>
6+
<em:version>3.14.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

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.13'
58+
version = '3.14'
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
@@ -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-3.13.0.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-3.14.0.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

@@ -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.13/selenium-server-standalone-3.13.0.jar
130+
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.14/selenium-server-standalone-3.14.0.jar
131131

132132
Run the server from the command line::
133133

134-
java -jar selenium-server-standalone-3.13.0.jar
134+
java -jar selenium-server-standalone-3.14.0.jar
135135

136136
Then run your Python client scripts.
137137

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__ = "3.13.0"
19+
__version__ = "3.14.0"

rb/lib/selenium/webdriver/version.rb

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

1818
module Selenium
1919
module WebDriver
20-
VERSION = '3.13.0'.freeze
20+
VERSION = '3.14.0'.freeze
2121
end # WebDriver
2222
end # Selenium

selenium-version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# BUILD FILE SYNTAX: SKYLARK
22

3-
SE_VERSION = '3.13.0'
3+
SE_VERSION = '3.14.0'
44

0 commit comments

Comments
 (0)