Skip to content

Commit

Permalink
Bumping Python version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Dec 16, 2013
1 parent bbfa38f commit 9807a0f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions py/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Selenium 2.89

This comment has been minimized.

Copy link
@lukeis

lukeis Dec 16, 2013

Member

quite the major version bump ;)

* Support for Firefox 26

Selenium 2.38.4
* keep-alive can't be used for phantomjs / IE, fix for that and tested for py3 :)

Expand Down
4 changes: 2 additions & 2 deletions py/README
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply

pip install -U selenium

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::
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::

python setup.py install

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

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

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

Run the server from the command line::

Expand Down
4 changes: 2 additions & 2 deletions py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
pip install -U selenium

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::
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::

python setup.py install

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

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

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

Run the server from the command line::

Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
from selenium import selenium


__version__ = "2.38.4"
__version__ = "2.39.0"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
from .common.touch_actions import TouchActions
from .common.proxy import Proxy

__version__ = '2.38.4'
__version__ = '2.39.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
setup_args = {
'cmdclass':{'install': install},
'name':'selenium',
'version':"2.38.4",
'version':"2.39.0",
'description':'Python bindings for Selenium',
'long_description':open(join(abspath(dirname(__file__)), "py", "README")).read(),
'url':'http://code.google.com/p/selenium/',
Expand Down

0 comments on commit 9807a0f

Please sign in to comment.