Skip to content

Commit 9807a0f

Browse files
author
AutomatedTester
committed
Bumping Python version numbers
1 parent bbfa38f commit 9807a0f

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

Diff for: py/CHANGES

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Selenium 2.89
2+
* Support for Firefox 26
3+
14
Selenium 2.38.4
25
* keep-alive can't be used for phantomjs / IE, fix for that and tested for py3 :)
36

Diff for: py/README

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
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-2.38.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-2.39.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

@@ -107,7 +107,7 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
107107

108108
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).
109109

110-
Download the server separately, from: http://selenium.googlecode.com/files/selenium-server-standalone-2.38.0.jar
110+
Download the server separately, from: http://selenium.googlecode.com/files/selenium-server-standalone-2.39.0.jar
111111

112112
Run the server from the command line::
113113

Diff for: py/docs/source/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
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-2.38.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-2.39.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

@@ -107,7 +107,7 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
107107

108108
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).
109109

110-
Download the server separately, from: http://selenium.googlecode.com/files/selenium-server-standalone-2.38.0.jar
110+
Download the server separately, from: http://selenium.googlecode.com/files/selenium-server-standalone-2.39.0.jar
111111

112112
Run the server from the command line::
113113

Diff for: py/selenium/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
from selenium import selenium
1616

1717

18-
__version__ = "2.38.4"
18+
__version__ = "2.39.0"

Diff for: py/selenium/webdriver/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@
2828
from .common.touch_actions import TouchActions
2929
from .common.proxy import Proxy
3030

31-
__version__ = '2.38.4'
31+
__version__ = '2.39.0'

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
setup_args = {
2929
'cmdclass':{'install': install},
3030
'name':'selenium',
31-
'version':"2.38.4",
31+
'version':"2.39.0",
3232
'description':'Python bindings for Selenium',
3333
'long_description':open(join(abspath(dirname(__file__)), "py", "README")).read(),
3434
'url':'http://code.google.com/p/selenium/',

0 commit comments

Comments
 (0)