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__))