diff --git a/py/README b/py/README index 12471c4dcd228..d2336d14e5cbd 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.46.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.47.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.46/selenium-server-standalone-2.46.0.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/2.47/selenium-server-standalone-2.47.0.jar Run the server from the command line:: - java -jar selenium-server-standalone-2.46.0.jar + java -jar selenium-server-standalone-2.47.0.jar Then run your Python client scripts. @@ -119,4 +119,3 @@ Use The Source Luke! ==================== View source code online at https://github.com/SeleniumHQ/selenium/tree/master/py/ - diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index 2dfc6015e9219..e76d3303c8596 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.46.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.47.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.46/selenium-server-standalone-2.46.0.jar +Download the server separately, from: http://selenium-release.storage.googleapis.com/2.47/selenium-server-standalone-2.47.0.jar Run the server from the command line:: - java -jar selenium-server-standalone-2.46.0.jar + java -jar selenium-server-standalone-2.47.0.jar Then run your Python client scripts. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index d414b5ebbd51a..363c333d2fa76 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -18,4 +18,4 @@ from selenium import selenium -__version__ = "2.46.1" +__version__ = "2.47.0" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 5a96fa5ab0805..a04ff4c45cea0 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -32,4 +32,4 @@ from .common.touch_actions import TouchActions from .common.proxy import Proxy -__version__ = '2.46.1' +__version__ = '2.47.0' diff --git a/setup.py b/setup.py index e710cf90f75ef..68714011adfd9 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "2.46.1", + 'version': "2.47.0", 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "py", "README")).read(), 'url': 'https://github.com/SeleniumHQ/selenium/',