Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ee4eb06

Browse files
committedFeb 1, 2016
Bump python client versions to 2.50.1
1 parent c68ace0 commit ee4eb06

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed
 

‎py/CHANGES‎

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
Selenium 2.50.1
2+
* Fixing error message handling. Fixes issue #1497
3+
* Fixing error message handling. Fixes issue #1507
4+
* Update webelement to handle W3C commands for size/location and rect
5+
* rewrite click scrolling tests to match the Java ones
6+
17
Selenium 2.50.0
28
* handle potential URLError from sending shutdown, set self.process to None after it's already been quit
39
* Add support for submit() with W3C compliant endpoint
410

5-
611
Selenium 2.49.1
712
* Ensure you can close stream before attempting to close it.
813
* message response may cause json loads ValueError when it's not actually json

‎py/README‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.49.2.tar.gz), unarchive it, and run::
39+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.50.1.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

‎py/docs/source/index.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.50.0.tar.gz), unarchive it, and run::
39+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.50.1.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

‎py/selenium/__init__.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
from selenium import selenium
1919

2020

21-
__version__ = "2.50.0"
21+
__version__ = "2.50.1"

‎py/selenium/webdriver/__init__.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
from .common.touch_actions import TouchActions
3333
from .common.proxy import Proxy
3434

35-
__version__ = '2.50.0'
35+
__version__ = '2.50.1'

‎setup.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
setup_args = {
3333
'cmdclass': {'install': install},
3434
'name': 'selenium',
35-
'version': "2.50.0",
35+
'version': "2.50.1",
3636
'description': 'Python bindings for Selenium',
3737
'long_description': open(join(abspath(dirname(__file__)), "py", "README")).read(),
3838
'url': 'https://github.com/SeleniumHQ/selenium/',

0 commit comments

Comments
 (0)
Please sign in to comment.