Skip to content

Commit

Permalink
[py] update CHANGELOG and versions for 3.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lmtierney committed Sep 20, 2018
1 parent 253fc6b commit c513b18
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
13 changes: 12 additions & 1 deletion py/CHANGES
@@ -1,10 +1,21 @@
Selenium 3.14.1
* Fix ability to set timeout for urllib3 (#6286)
* get_cookie uses w3c endpoint when compliant
* Remove body from GET requests (#6250)
* Fix actions pause for fraction of a second (#6300)
* Fixed input pausing for some actions methods
* Capabilities can be set on Options classes
* WebElement rect method is now forward compatible for OSS endpoints (#6355)
* Deprecation warnings now have a stacklevel of 2
* keep_alive can now be set on Webdriver init (#6316)
* isDisplayed atom is now used for all w3c compliant browser, fixing issue with Safari 12

Selenium 3.14.0
* Fix doc of URL-related ExpectedCondition (#6236)
* Added ExpectedCondition invisibility_of_element
* Swap out httplib for urllib3
* Be consistent with webdriver init kwarg service_log_path (#5725)


Selenium 3.13.0

* Add executing Chrome devtools command (#5989)
Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Expand Up @@ -16,4 +16,4 @@
# under the License.


__version__ = "3.14.0"
__version__ = "3.14.1"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Expand Up @@ -36,4 +36,4 @@
from .common.touch_actions import TouchActions # noqa
from .common.proxy import Proxy # noqa

__version__ = '3.14.0'
__version__ = '3.14.1'
2 changes: 1 addition & 1 deletion py/setup.py
Expand Up @@ -29,7 +29,7 @@
setup_args = {
'cmdclass': {'install': install},
'name': 'selenium',
'version': "3.14.0",
'version': "3.14.1",
'license': 'Apache 2.0',
'description': 'Python bindings for Selenium',
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),
Expand Down

0 comments on commit c513b18

Please sign in to comment.