From e9a84a7a8fe89f7ea89eb4d45a608812f50fe7e6 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Mon, 23 Sep 2024 16:19:54 +0200 Subject: [PATCH] Update version and changelog --- CHANGELOG.md | 7 +++++++ Gemfile.lock | 8 ++++---- gemfiles/rails_61/Gemfile.lock | 6 +++--- gemfiles/rails_70/Gemfile.lock | 6 +++--- gemfiles/rails_71/Gemfile.lock | 6 +++--- lib/arbre/version.rb | 2 +- 6 files changed, 21 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fc956e..33faefb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Unreleased + +## 2.0.2 [☰](https://github.com/activeadmin/arbre/compare/v2.0.1...v2.0.2) + +* Prefer `require_relative` for internal requires. [#622][] by [@tagliala][] + ## 2.0.1 [☰](https://github.com/activeadmin/arbre/compare/v2.0.0...v2.0.1) * Drop dependency on ruby2_keywords. [#578][] by [@Earlopain][] @@ -141,6 +147,7 @@ Initial release and extraction from Active Admin [#562]: https://github.com/activeadmin/arbre/pull/562 [#578]: https://github.com/activeadmin/arbre/pull/578 [#617]: https://github.com/activeadmin/arbre/pull/617 +[#622]: https://github.com/activeadmin/arbre/pull/622 [@aramvisser]: https://github.com/aramvisser [@LTe]: https://github.com/LTe diff --git a/Gemfile.lock b/Gemfile.lock index b312e99..d209351 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - arbre (2.0.1) + arbre (2.0.2) activesupport (>= 3.0.0) GEM @@ -107,7 +107,7 @@ GEM erubi (1.13.0) globalid (1.2.1) activesupport (>= 6.1) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) io-console (0.7.2) irb (1.14.0) @@ -244,7 +244,7 @@ GEM rubocop (~> 1.41) 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) rubocop-rspec (3.0.5) @@ -300,4 +300,4 @@ DEPENDENCIES simplecov-cobertura BUNDLED WITH - 2.5.18 + 2.5.19 diff --git a/gemfiles/rails_61/Gemfile.lock b/gemfiles/rails_61/Gemfile.lock index 3d22a1a..57db6d0 100644 --- a/gemfiles/rails_61/Gemfile.lock +++ b/gemfiles/rails_61/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - arbre (2.0.1) + arbre (2.0.2) activesupport (>= 3.0.0) GEM @@ -91,7 +91,7 @@ GEM erubi (1.13.0) globalid (1.2.1) activesupport (>= 6.1) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) loofah (2.22.0) crass (~> 1.0.2) @@ -235,4 +235,4 @@ DEPENDENCIES simplecov-cobertura BUNDLED WITH - 2.5.18 + 2.5.19 diff --git a/gemfiles/rails_70/Gemfile.lock b/gemfiles/rails_70/Gemfile.lock index a85246f..d041953 100644 --- a/gemfiles/rails_70/Gemfile.lock +++ b/gemfiles/rails_70/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - arbre (2.0.1) + arbre (2.0.2) activesupport (>= 3.0.0) GEM @@ -97,7 +97,7 @@ GEM erubi (1.13.0) globalid (1.2.1) activesupport (>= 6.1) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) loofah (2.22.0) crass (~> 1.0.2) @@ -234,4 +234,4 @@ DEPENDENCIES simplecov-cobertura BUNDLED WITH - 2.5.18 + 2.5.19 diff --git a/gemfiles/rails_71/Gemfile.lock b/gemfiles/rails_71/Gemfile.lock index 59a82a6..9512c17 100644 --- a/gemfiles/rails_71/Gemfile.lock +++ b/gemfiles/rails_71/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - arbre (2.0.1) + arbre (2.0.2) activesupport (>= 3.0.0) GEM @@ -110,7 +110,7 @@ GEM erubi (1.13.0) globalid (1.2.1) activesupport (>= 6.1) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) io-console (0.7.2) irb (1.14.0) @@ -266,4 +266,4 @@ DEPENDENCIES simplecov-cobertura BUNDLED WITH - 2.5.18 + 2.5.19 diff --git a/lib/arbre/version.rb b/lib/arbre/version.rb index 6781e87..d47c332 100644 --- a/lib/arbre/version.rb +++ b/lib/arbre/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Arbre - VERSION = "2.0.1" + VERSION = "2.0.2" end