Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 0.20.0 #1210

Merged
merged 1 commit into from
Nov 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/news/0.20.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.. Copyright 2023 splinter authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.

.. meta::
:description: New splinter features on version 0.20.0.
:keywords: splinter 0.20.0, news

[0.20.0]
========

Changed
-------

* Selenium 3 is no longer supported
* Added support for Python 3.11 and 3.12, dropped support for Python 3.7

Fixed
-----

* CookieManager.delete() no longer deletes all cookies when no arguments are given
2 changes: 1 addition & 1 deletion splinter/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = (0, 19, 0)
__version_info__ = (0, 20, 0)
__version__ = ".".join(map(str, __version_info__))