From c5cf02b1a62c1a5b1af0f30b91abc804df7b467f Mon Sep 17 00:00:00 2001 From: Thomas Walpole Date: Sun, 29 Dec 2019 14:42:56 -0800 Subject: [PATCH] Update History.md for 3.30.1 [ci skip] --- History.md | 8 ++++++++ lib/capybara/version.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/History.md b/History.md index 69ce2d2b..d29918fc 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,11 @@ +# Version 3.30.1 +Release date: unreleased + +* Fix Ruby 2.7 deprecation notices around keyword arguments. I have tried to do this without + any breaking changes, but due to the nature of the 2.7 changes and some selector types accepting + Hashes as locators there are a lot of edge cases. If you find any broken cases please report + them and I'll see if they're fixable. + # Version 3.30.0 Release date: 2019-12-24 diff --git a/lib/capybara/version.rb b/lib/capybara/version.rb index 247f8cde..43903bf6 100644 --- a/lib/capybara/version.rb +++ b/lib/capybara/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Capybara - VERSION = '3.30.0' + VERSION = '3.30.1' end