From 6c0226ecb026949e391f1e58d053d93de5bd4482 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Mon, 23 Sep 2024 16:19:34 +0200 Subject: [PATCH] Update version and changelog --- CHANGELOG.md | 5 +++++ Gemfile.lock | 8 ++++---- gemfiles/rails_61/Gemfile.lock | 6 +++--- gemfiles/rails_70/Gemfile.lock | 6 +++--- gemfiles/rails_71/Gemfile.lock | 6 +++--- lib/inherited_resources/version.rb | 2 +- 6 files changed, 19 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e116dda0..ef0adeee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +## Version 2.0.1 + +* Prefer `require_relative` for internal requires [#939][]. + ## Version 2.0.0 * Test against Rails 7.2 [#921][]. @@ -236,3 +240,4 @@ _No changes_. [#918]: https://github.com/activeadmin/inherited_resources/pull/918 [#921]: https://github.com/activeadmin/inherited_resources/pull/921 [#933]: https://github.com/activeadmin/inherited_resources/pull/933 +[#939]: https://github.com/activeadmin/inherited_resources/pull/939 diff --git a/Gemfile.lock b/Gemfile.lock index f3d2d3e1..1e26b837 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - inherited_resources (2.0.0) + inherited_resources (2.0.1) actionpack (>= 6.0) has_scope (>= 0.6) railties (>= 6.0) @@ -97,7 +97,7 @@ GEM has_scope (0.8.2) actionpack (>= 5.2) activesupport (>= 5.2) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) io-console (0.7.2) irb (1.14.0) @@ -222,7 +222,7 @@ GEM rubocop-ast (>= 1.31.1, < 2.0) rubocop-packaging (0.5.2) rubocop (>= 1.33, < 2.0) - rubocop-performance (1.21.1) + rubocop-performance (1.22.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) @@ -274,4 +274,4 @@ DEPENDENCIES warning BUNDLED WITH - 2.5.18 + 2.5.19 diff --git a/gemfiles/rails_61/Gemfile.lock b/gemfiles/rails_61/Gemfile.lock index a64bb4f1..6fd5f86d 100644 --- a/gemfiles/rails_61/Gemfile.lock +++ b/gemfiles/rails_61/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - inherited_resources (2.0.0) + inherited_resources (2.0.1) actionpack (>= 6.0) has_scope (>= 0.6) railties (>= 6.0) @@ -81,7 +81,7 @@ GEM has_scope (0.8.2) actionpack (>= 5.2) activesupport (>= 5.2) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) loofah (2.22.0) crass (~> 1.0.2) @@ -212,4 +212,4 @@ DEPENDENCIES warning BUNDLED WITH - 2.5.18 + 2.5.19 diff --git a/gemfiles/rails_70/Gemfile.lock b/gemfiles/rails_70/Gemfile.lock index 2fdbbfaa..4f5fbc27 100644 --- a/gemfiles/rails_70/Gemfile.lock +++ b/gemfiles/rails_70/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - inherited_resources (2.0.0) + inherited_resources (2.0.1) actionpack (>= 6.0) has_scope (>= 0.6) railties (>= 6.0) @@ -87,7 +87,7 @@ GEM has_scope (0.8.2) actionpack (>= 5.2) activesupport (>= 5.2) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) loofah (2.22.0) crass (~> 1.0.2) @@ -211,4 +211,4 @@ DEPENDENCIES warning BUNDLED WITH - 2.5.18 + 2.5.19 diff --git a/gemfiles/rails_71/Gemfile.lock b/gemfiles/rails_71/Gemfile.lock index a0a5c469..7a2e3b48 100644 --- a/gemfiles/rails_71/Gemfile.lock +++ b/gemfiles/rails_71/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - inherited_resources (2.0.0) + inherited_resources (2.0.1) actionpack (>= 6.0) has_scope (>= 0.6) railties (>= 6.0) @@ -100,7 +100,7 @@ GEM has_scope (0.8.2) actionpack (>= 5.2) activesupport (>= 5.2) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) io-console (0.7.2) irb (1.14.0) @@ -242,4 +242,4 @@ DEPENDENCIES warning BUNDLED WITH - 2.5.18 + 2.5.19 diff --git a/lib/inherited_resources/version.rb b/lib/inherited_resources/version.rb index acc37879..04963380 100644 --- a/lib/inherited_resources/version.rb +++ b/lib/inherited_resources/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module InheritedResources - VERSION = '2.0.0'.freeze + VERSION = '2.0.1'.freeze end