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