diff --git a/py/README b/py/README index f05dcf8593dfc..bf4ae41e13dc1 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.49.1.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.49.2.tar.gz), unarchive it, and run:: python setup.py install diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index 2eeab4a31667b..89363066e7fc1 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.49.1.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-2.49.2.tar.gz), unarchive it, and run:: python setup.py install diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 377189bb401d6..c224d710cb356 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -18,4 +18,4 @@ from selenium import selenium -__version__ = "2.49.1" +__version__ = "2.49.2" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 494bba2327726..d27cbebbde2eb 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.49.1' +__version__ = '2.49.2' diff --git a/setup.py b/setup.py index 6e89ec94caa72..feb4e35154e77 100755 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "2.49.1", + 'version': "2.49.2", 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "py", "README")).read(), 'url': 'https://github.com/SeleniumHQ/selenium/',