From 9807a0fabcbb02c98468d9328a402b9b1a0707e2 Mon Sep 17 00:00:00 2001 From: AutomatedTester Date: Mon, 16 Dec 2013 20:57:28 +0000 Subject: [PATCH] Bumping Python version numbers --- py/CHANGES | 3 +++ py/README | 4 ++-- py/docs/source/index.rst | 4 ++-- py/selenium/__init__.py | 2 +- py/selenium/webdriver/__init__.py | 2 +- setup.py | 2 +- 6 files changed, 10 insertions(+), 7 deletions(-) diff --git a/py/CHANGES b/py/CHANGES index ca00d0f8ecd69..8de8dbba90e34 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,6 @@ +Selenium 2.89 +* Support for Firefox 26 + Selenium 2.38.4 * keep-alive can't be used for phantomjs / IE, fix for that and tested for py3 :) diff --git a/py/README b/py/README index cce10e9e8d916..dd25d61fed833 100644 --- a/py/README +++ b/py/README @@ -36,7 +36,7 @@ If you have `pip `_ on your system, you can simply pip install -U selenium -Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.38.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.39.tar.gz), unarchive it, and run:: python setup.py install @@ -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:: diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index cce10e9e8d916..dd25d61fed833 100644 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -36,7 +36,7 @@ If you have `pip `_ on your system, you can simply pip install -U selenium -Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.38.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.39.tar.gz), unarchive it, and run:: python setup.py install @@ -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:: diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 714c81a84977e..0e80a1827cfd5 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -15,4 +15,4 @@ from selenium import selenium -__version__ = "2.38.4" +__version__ = "2.39.0" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 110f7f2b9c86e..dc8b5b42e856e 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -28,4 +28,4 @@ from .common.touch_actions import TouchActions from .common.proxy import Proxy -__version__ = '2.38.4' +__version__ = '2.39.0' diff --git a/setup.py b/setup.py index 92cb509d0f5cf..2d3bf4b577117 100755 --- a/setup.py +++ b/setup.py @@ -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/',