Skip to content

Commit f2bfe6a

Browse files
Bump Python to 3.3.1
1 parent a634bf7 commit f2bfe6a

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

py/CHANGES

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Selenium 3.3.1
2+
* Fix encoding of basic auth header when using Python 3 Fixes #3622
3+
* Add initial unit test suite
4+
* Update W3C Timeout setting to be in line with the specification
5+
* support.ui.Select class inherits from object (#3067)
6+
* fix bug in proxy constructor that some properties are not proper set (#3459)
7+
* Fix flake8 issues (#3628)
8+
19
Selenium 3.3.0
210
** Note ** If you are updating to this version, please also update GeckoDriver to v0.15.0
311
* Fix python HTTPS encoding for python driver (#3379)

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 <https://pip.pypa.io/>`_ on your system, you can simply install
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-3.3.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-3.3.1.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

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

128128
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).
129129

130-
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.3/selenium-server-standalone-3.3.0.jar
130+
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.3/selenium-server-standalone-3.3.1.jar
131131

132132
Run the server from the command line::
133133

134-
java -jar selenium-server-standalone-3.3.0.jar
134+
java -jar selenium-server-standalone-3.3.1.jar
135135

136136
Then run your Python client scripts.
137137

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "3.3.0"
19+
__version__ = "3.3.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 # noqa
3333
from .common.proxy import Proxy # noqa
3434

35-
__version__ = '3.3.0'
35+
__version__ = '3.3.1'

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
setup_args = {
3030
'cmdclass': {'install': install},
3131
'name': 'selenium',
32-
'version': "3.3.0",
32+
'version': "3.3.1",
3333
'license': 'Apache 2.0',
3434
'description': 'Python bindings for Selenium',
3535
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

0 commit comments

Comments
 (0)