diff --git a/CHANGELOG.md b/CHANGELOG.md index 15bd38a1..5cebbb88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## Next +## 5.7.0 +* french locale +* drop ruby 2.3 + +## 5.6.0 +* Allow multiple invisible recaptchas on a single page by setting custom selector + ## 5.5.0 * add `recaptcha_reply` controller method for better debugging/inspection diff --git a/Gemfile.lock b/Gemfile.lock index c708a015..54bdd079 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - recaptcha (5.6.0) + recaptcha (5.7.0) json GEM @@ -20,7 +20,7 @@ GEM i18n (1.6.0) concurrent-ruby (~> 1.0) jaro_winkler (1.5.2) - json (2.3.1) + json (2.5.1) maxitest (3.1.0) minitest (>= 5.0.0, < 5.12.0) metaclass (0.0.4) diff --git a/lib/recaptcha/version.rb b/lib/recaptcha/version.rb index ac4ec8fe..726b42b4 100644 --- a/lib/recaptcha/version.rb +++ b/lib/recaptcha/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Recaptcha - VERSION = '5.6.0' + VERSION = '5.7.0' end