From d149952c46c7fac262160b42a3745835beecb2fd Mon Sep 17 00:00:00 2001 From: fsouza <108725+fsouza@users.noreply.github.com> Date: Wed, 15 Nov 2023 10:51:44 -0500 Subject: [PATCH] Bump to 0.20.1 (#1216) --- docs/news/0.20.1.rst | 15 +++++++++++++++ splinter/version.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 docs/news/0.20.1.rst diff --git a/docs/news/0.20.1.rst b/docs/news/0.20.1.rst new file mode 100644 index 000000000..859720ab8 --- /dev/null +++ b/docs/news/0.20.1.rst @@ -0,0 +1,15 @@ +.. 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.1. + :keywords: splinter 0.20.1, news + +[0.20.1] +======== + +Fixed +----- + +* Fix the default value for User-Agent diff --git a/splinter/version.py b/splinter/version.py index 4b354daa0..ff053a595 100644 --- a/splinter/version.py +++ b/splinter/version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 20, 0) +__version_info__ = (0, 20, 1) __version__ = ".".join(map(str, __version_info__))