diff --git a/py/README b/py/README index c79d85b6b7f17..641b58312b59d 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.41.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.42.tar.gz), unarchive it, and run:: python setup.py install @@ -107,11 +107,11 @@ 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-release.storage.googleapis.com/2.41/selenium-server-standalone-2.41.0.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/2.42/selenium-server-standalone-2.42.0.jar Run the server from the command line:: - java -jar selenium-server-standalone-2.41.0.jar + java -jar selenium-server-standalone-2.42.0.jar Then run your Python client scripts. diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index c79d85b6b7f17..641b58312b59d 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.41.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.42.tar.gz), unarchive it, and run:: python setup.py install @@ -107,11 +107,11 @@ 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-release.storage.googleapis.com/2.41/selenium-server-standalone-2.41.0.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/2.42/selenium-server-standalone-2.42.0.jar Run the server from the command line:: - java -jar selenium-server-standalone-2.41.0.jar + java -jar selenium-server-standalone-2.42.0.jar Then run your Python client scripts. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 9876f402935d4..b81110663f9fc 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -15,4 +15,4 @@ from selenium import selenium -__version__ = "2.41.0" +__version__ = "2.42.0" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 94087c5a5039c..7d16234c42b81 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -29,4 +29,4 @@ from .common.touch_actions import TouchActions from .common.proxy import Proxy -__version__ = '2.41.0' +__version__ = '2.42.0' diff --git a/setup.py b/setup.py index a84e870c422b2..f7762cd1e6c7a 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup_args = { 'cmdclass':{'install': install}, 'name':'selenium', - 'version':"2.41.0", + 'version':"2.42.0", 'description':'Python bindings for Selenium', 'long_description':open(join(abspath(dirname(__file__)), "py", "README")).read(), 'url':'http://code.google.com/p/selenium/',