From a52b856da969e3e424a83273ed80fff16b847193 Mon Sep 17 00:00:00 2001 From: fsouza <108725+fsouza@users.noreply.github.com> Date: Mon, 15 Jan 2024 19:49:27 -0500 Subject: [PATCH] Bump 0.21.0 (#1229) --- docs/news/0.21.0.rst | 15 +++++++++++++++ splinter/version.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 docs/news/0.21.0.rst 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__))