Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version and changelog #620

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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][]
Expand Down Expand Up @@ -99,7 +104,6 @@ _No changes_.

Initial release and extraction from Active Admin

<!--- The following link definition list is generated by PimpMyChangelog --->
[#4]: https://github.com/activeadmin/arbre/issues/4
[#6]: https://github.com/activeadmin/arbre/issues/6
[#7]: https://github.com/activeadmin/arbre/issues/7
Expand Down Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
arbre (2.0.0)
arbre (2.0.1)
activesupport (>= 3.0.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_61/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../..
specs:
arbre (2.0.0)
arbre (2.0.1)
activesupport (>= 3.0.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_70/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../..
specs:
arbre (2.0.0)
arbre (2.0.1)
activesupport (>= 3.0.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_71/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../..
specs:
arbre (2.0.0)
arbre (2.0.1)
activesupport (>= 3.0.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/arbre/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module Arbre
VERSION = "2.0.0"
VERSION = "2.0.1"
end