From 49e3d5c09f2f1336694388bf8ee9497cd20b0565 Mon Sep 17 00:00:00 2001 From: fsouza <108725+fsouza@users.noreply.github.com> Date: Fri, 10 Nov 2023 23:54:18 -0500 Subject: [PATCH] Bump version to 0.20.0 (#1210) --- docs/news/0.20.0.rst | 21 +++++++++++++++++++++ splinter/version.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 docs/news/0.20.0.rst diff --git a/docs/news/0.20.0.rst b/docs/news/0.20.0.rst new file mode 100644 index 000000000..810b413d5 --- /dev/null +++ b/docs/news/0.20.0.rst @@ -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 diff --git a/splinter/version.py b/splinter/version.py index c64d1f906..4b354daa0 100644 --- a/splinter/version.py +++ b/splinter/version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 19, 0) +__version_info__ = (0, 20, 0) __version__ = ".".join(map(str, __version_info__))