From 5ab9dff5e8467ca1e98e4a90e01cbabec72bc950 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Sun, 15 Sep 2024 18:30:50 +0200 Subject: [PATCH] Update version and changelog Remove outdated reference to PimpMyChangelog --- CHANGELOG.md | 10 +++++++++- Gemfile.lock | 2 +- gemfiles/rails_61/Gemfile.lock | 2 +- gemfiles/rails_70/Gemfile.lock | 2 +- gemfiles/rails_71/Gemfile.lock | 2 +- lib/arbre/version.rb | 2 +- 6 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4c5e58a..2fc956e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 2.0.1 [☰](https://github.com/activeadmin/arbre/compare/v2.0.0...v2.0.1) + +* Drop dependency on ruby2_keywords. [#578][] by [@Earlopain][] +* Performance improvements in HTML generation. [#562][], [#617][] by [@tagliala][] + ## 2.0.0 [☰](https://github.com/activeadmin/arbre/compare/v1.7.0...v2.0.0) * Include empty attributes in HTML output. [#543][] by [@javierjulio][] @@ -99,7 +104,6 @@ _No changes_. Initial release and extraction from Active Admin - [#4]: https://github.com/activeadmin/arbre/issues/4 [#6]: https://github.com/activeadmin/arbre/issues/6 [#7]: https://github.com/activeadmin/arbre/issues/7 @@ -134,6 +138,9 @@ Initial release and extraction from Active Admin [#542]: https://github.com/activeadmin/arbre/pull/542 [#543]: https://github.com/activeadmin/arbre/pull/543 [#545]: https://github.com/activeadmin/arbre/pull/545 +[#562]: https://github.com/activeadmin/arbre/pull/562 +[#578]: https://github.com/activeadmin/arbre/pull/578 +[#617]: https://github.com/activeadmin/arbre/pull/617 [@aramvisser]: https://github.com/aramvisser [@LTe]: https://github.com/LTe @@ -157,3 +164,4 @@ Initial release and extraction from Active Admin [@ngan]: https://github.com/ngan [@tomascco]: https://github.com/tomascco [@javierjulio]: https://github.com/javierjulio +[@Earlopain]: https://github.com/Earlopain diff --git a/Gemfile.lock b/Gemfile.lock index 31d9b0ce..b312e997 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - arbre (2.0.0) + arbre (2.0.1) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/rails_61/Gemfile.lock b/gemfiles/rails_61/Gemfile.lock index 51bf07dd..3d22a1af 100644 --- a/gemfiles/rails_61/Gemfile.lock +++ b/gemfiles/rails_61/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - arbre (2.0.0) + arbre (2.0.1) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/rails_70/Gemfile.lock b/gemfiles/rails_70/Gemfile.lock index 55734a90..a85246ff 100644 --- a/gemfiles/rails_70/Gemfile.lock +++ b/gemfiles/rails_70/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - arbre (2.0.0) + arbre (2.0.1) activesupport (>= 3.0.0) GEM diff --git a/gemfiles/rails_71/Gemfile.lock b/gemfiles/rails_71/Gemfile.lock index 7d4688b3..59a82a68 100644 --- a/gemfiles/rails_71/Gemfile.lock +++ b/gemfiles/rails_71/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - arbre (2.0.0) + arbre (2.0.1) activesupport (>= 3.0.0) GEM diff --git a/lib/arbre/version.rb b/lib/arbre/version.rb index d7f42c80..6781e871 100644 --- a/lib/arbre/version.rb +++ b/lib/arbre/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Arbre - VERSION = "2.0.0" + VERSION = "2.0.1" end