diff --git a/docs/news/0.21.0.rst b/docs/news/0.21.0.rst new file mode 100644 index 000000000..a1fdf46bd --- /dev/null +++ b/docs/news/0.21.0.rst @@ -0,0 +1,15 @@ +.. Copyright 2024 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.21.0. + :keywords: splinter 0.21.0, news + +[0.21.0] +======== + +Changed +------- + +* `Safari` is now supported as a browser for Selenium Remote diff --git a/splinter/version.py b/splinter/version.py index ff053a595..f81169308 100644 --- a/splinter/version.py +++ b/splinter/version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 20, 1) +__version_info__ = (0, 21, 0) __version__ = ".".join(map(str, __version_info__))