diff --git a/CHANGELOG.md b/CHANGELOG.md index acb8c92a..54bf36f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,10 @@ ## Master (unreleased) -* Allow Active Support 7.1. [#537][] by [@tomascco][] +## 1.7.0 [☰](https://github.com/activeadmin/arbre/compare/v1.6.0...v1.7.0) + +* Remove upper bound dependency limits from gemspec. [#539][] by [@javierjulio][] +* Allow ActiveSupport 7.1. [#537][] by [@tomascco][] ## 1.6.0 [☰](https://github.com/activeadmin/arbre/compare/v1.5.0...v1.6.0) @@ -123,6 +126,7 @@ Initial release and extraction from Active Admin [#451]: https://github.com/activeadmin/arbre/pull/451 [#456]: https://github.com/activeadmin/arbre/pull/456 [#537]: https://github.com/activeadmin/arbre/pull/537 +[#539]: https://github.com/activeadmin/arbre/pull/539 [@aramvisser]: https://github.com/aramvisser [@LTe]: https://github.com/LTe @@ -145,3 +149,4 @@ Initial release and extraction from Active Admin [@Ikariusrb]: https://github.com/Ikariusrb [@ngan]: https://github.com/ngan [@tomascco]: https://github.com/tomascco +[@javierjulio]: https://github.com/javierjulio diff --git a/Gemfile.lock b/Gemfile.lock index eab0ffe1..437ff49f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - arbre (1.6.0) + arbre (1.7.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 9c24a320..ca688942 100644 --- a/gemfiles/rails_61/Gemfile.lock +++ b/gemfiles/rails_61/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - arbre (1.6.0) + arbre (1.7.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 0a6c3ebe..462b22e1 100644 --- a/gemfiles/rails_70/Gemfile.lock +++ b/gemfiles/rails_70/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - arbre (1.6.0) + arbre (1.7.0) activesupport (>= 3.0.0) ruby2_keywords (>= 0.0.2) diff --git a/lib/arbre/version.rb b/lib/arbre/version.rb index d9c525d0..3d3b568a 100644 --- a/lib/arbre/version.rb +++ b/lib/arbre/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Arbre - VERSION = "1.6.0" + VERSION = "1.7.0" end