From 6f8f106ecc7d974cc3e5d8ec7efd7ab0411e75c8 Mon Sep 17 00:00:00 2001 From: Javier Julio Date: Tue, 5 Dec 2023 20:25:19 -0500 Subject: [PATCH] Prep for v2.0.0 release (#518) Prep for v2 release --- CHANGELOG.md | 9 ++++++++- Gemfile.lock | 2 +- gemfiles/rails_61/Gemfile.lock | 2 +- gemfiles/rails_70/Gemfile.lock | 2 +- lib/arbre/version.rb | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54bf36f2..d4c5e58a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -## Master (unreleased) +## 2.0.0 [☰](https://github.com/activeadmin/arbre/compare/v1.7.0...v2.0.0) + +* Include empty attributes in HTML output. [#543][] by [@javierjulio][] +* Remove table tag defaults. [#542][] by [@javierjulio][] +* Remove component CSS class name default. [#545][] by [@javierjulio][] ## 1.7.0 [☰](https://github.com/activeadmin/arbre/compare/v1.6.0...v1.7.0) @@ -127,6 +131,9 @@ Initial release and extraction from Active Admin [#456]: https://github.com/activeadmin/arbre/pull/456 [#537]: https://github.com/activeadmin/arbre/pull/537 [#539]: https://github.com/activeadmin/arbre/pull/539 +[#542]: https://github.com/activeadmin/arbre/pull/542 +[#543]: https://github.com/activeadmin/arbre/pull/543 +[#545]: https://github.com/activeadmin/arbre/pull/545 [@aramvisser]: https://github.com/aramvisser [@LTe]: https://github.com/LTe diff --git a/Gemfile.lock b/Gemfile.lock index 3f049d60..b4964da3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - arbre (1.7.0) + arbre (2.0.0) activesupport (>= 3.0.0) ruby2_keywords (>= 0.0.2) diff --git a/gemfiles/rails_61/Gemfile.lock b/gemfiles/rails_61/Gemfile.lock index fd3aba0d..c389cea9 100644 --- a/gemfiles/rails_61/Gemfile.lock +++ b/gemfiles/rails_61/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - arbre (1.7.0) + arbre (2.0.0) activesupport (>= 3.0.0) ruby2_keywords (>= 0.0.2) diff --git a/gemfiles/rails_70/Gemfile.lock b/gemfiles/rails_70/Gemfile.lock index 97f7d213..e16531cb 100644 --- a/gemfiles/rails_70/Gemfile.lock +++ b/gemfiles/rails_70/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - arbre (1.7.0) + arbre (2.0.0) activesupport (>= 3.0.0) ruby2_keywords (>= 0.0.2) diff --git a/lib/arbre/version.rb b/lib/arbre/version.rb index 3d3b568a..d7f42c80 100644 --- a/lib/arbre/version.rb +++ b/lib/arbre/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Arbre - VERSION = "1.7.0" + VERSION = "2.0.0" end