diff --git a/py/README b/py/README index 641b58312b59d..fa316fa13256e 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.42.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.43.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.42/selenium-server-standalone-2.42.0.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.0.jar Run the server from the command line:: - java -jar selenium-server-standalone-2.42.0.jar + java -jar selenium-server-standalone-2.43.0.jar Then run your Python client scripts. diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index 13bc895ca0e80..f74bc157ad40a 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.42.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.43.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.42/selenium-server-standalone-2.42.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.jar Run the server from the command line:: - java -jar selenium-server-standalone-2.42.jar + java -jar selenium-server-standalone-2.43.jar Then run your Python client scripts. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index db99ab7b67009..121307a5d49e2 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -15,4 +15,4 @@ from selenium import selenium -__version__ = "2.42.1" +__version__ = "2.43.0" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 72d0c9b14cb00..09a3c9ad8b31b 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.42.1' +__version__ = '2.43.0' diff --git a/setup.py b/setup.py index 769bc53853947..612a7a5bc1c0f 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup_args = { 'cmdclass':{'install': install}, 'name':'selenium', - 'version':"2.42.1", + 'version':"2.43.0", 'description':'Python bindings for Selenium', 'long_description':open(join(abspath(dirname(__file__)), "py", "README")).read(), 'url':'http://code.google.com/p/selenium/',