Skip to content

Commit 14ff04b

Browse files
Bump version to 2.50
1 parent 19d6bc9 commit 14ff04b

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

py/CHANGES

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Selenium 2.50.0
2+
* handle potential URLError from sending shutdown, set self.process to None after it's already been quit
3+
* Add support for submit() with W3C compliant endpoint
4+
5+
16
Selenium 2.49.1
27
* Ensure you can close stream before attempting to close it.
38
* message response may cause json loads ValueError when it's not actually json

py/docs/source/index.rst

Lines changed: 3 additions & 3 deletions
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.0.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

@@ -107,11 +107,11 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
107107

108108
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).
109109

110-
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.49/selenium-server-standalone-2.49.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.50/selenium-server-standalone-2.50.0.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.49.0.jar
114+
java -jar selenium-server-standalone-2.50.0.jar
115115

116116
Then run your Python client scripts.
117117

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.49.2"
21+
__version__ = "2.50.0"

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.49.2'
35+
__version__ = '2.50.0'

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.49.2",
35+
'version': "2.50.0",
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)