Skip to content

Commit 57fe003

Browse files
committed
Bump version number to 3.8
1 parent 5844316 commit 57fe003

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

Rakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ end
4646
verbose($DEBUG)
4747

4848
def release_version
49-
"3.7"
49+
"3.8"
5050
end
5151

5252
def version
53-
"#{release_version}.1"
53+
"#{release_version}.0"
5454
end
5555

56-
ide_version = "2.8.0"
56+
ide_version = "2.9.1"
5757

5858
# The build system used by webdriver is layered on top of rake, and we call it
5959
# "crazy fun" for no readily apparent reason.

javascript/firefox-driver/extension/install.rdf

Lines changed: 2 additions & 2 deletions
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.7.1</em:version>
6+
<em:version>3.8.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>
@@ -15,7 +15,7 @@
1515
<Description>
1616
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
1717
<em:minVersion>3.0</em:minVersion>
18-
<em:maxVersion>48.0</em:maxVersion>
18+
<em:maxVersion>52.0</em:maxVersion>
1919
</Description>
2020
</em:targetApplication>
2121

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.7'
58+
version = '3.8'
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 <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-3.7.0.tar.gz), unarchive it, and run::
38+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-3.8.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.7/selenium-server-standalone-3.7.0.jar
130+
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.8/selenium-server-standalone-3.8.0.jar
131131

132132
Run the server from the command line::
133133

134-
java -jar selenium-server-standalone-3.7.0.jar
134+
java -jar selenium-server-standalone-3.8.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.7.0"
19+
__version__ = "3.8.0"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
from .common.touch_actions import TouchActions # noqa
3636
from .common.proxy import Proxy # noqa
3737

38-
__version__ = '3.7.0'
38+
__version__ = '3.8.0'

py/setup.py

Lines changed: 1 addition & 1 deletion
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.7.0",
32+
'version': "3.8.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

Lines changed: 1 addition & 1 deletion
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.7.0'
6+
s.version = '3.8.0'
77

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

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.7.1'
3+
SE_VERSION = '3.8.0'
44

0 commit comments

Comments
 (0)