From 9004d8d3e8944bf5ddccd72efd14102c4c954c5b Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Mon, 15 Feb 2021 10:33:50 -0300 Subject: [PATCH] Release v0.8.0 --- CHANGELOG.md | 2 +- Gemfile.lock | 16 ++++++++-------- lib/has_scope/version.rb | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46cd256..05f428c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## 0.8.0 * Fix usage of `:in` when defined with a `:default` option that is not a hash, to apply the default when param is not given. * Fix usage of `:in` incorrectly calling scopes when receiving a blank param value without `allow_blank` set. diff --git a/Gemfile.lock b/Gemfile.lock index f63cb78..60b2365 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,27 +1,27 @@ PATH remote: . specs: - has_scope (0.7.2) + has_scope (0.8.0) actionpack (>= 5.2) activesupport (>= 5.2) GEM remote: https://rubygems.org/ specs: - actionpack (6.1.1) - actionview (= 6.1.1) - activesupport (= 6.1.1) + actionpack (6.1.2.1) + actionview (= 6.1.2.1) + activesupport (= 6.1.2.1) rack (~> 2.0, >= 2.0.9) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.2.0) - actionview (6.1.1) - activesupport (= 6.1.1) + actionview (6.1.2.1) + activesupport (= 6.1.2.1) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.1, >= 1.2.0) - activesupport (6.1.1) + activesupport (6.1.2.1) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -31,7 +31,7 @@ GEM concurrent-ruby (1.1.8) crass (1.0.6) erubi (1.10.0) - i18n (1.8.7) + i18n (1.8.9) concurrent-ruby (~> 1.0) loofah (2.9.0) crass (~> 1.0.2) diff --git a/lib/has_scope/version.rb b/lib/has_scope/version.rb index a289230..ee766d8 100644 --- a/lib/has_scope/version.rb +++ b/lib/has_scope/version.rb @@ -1,3 +1,3 @@ module HasScope - VERSION = "0.7.2" + VERSION = "0.8.0" end