Skip to content

Commit 5178ad6

Browse files
committed
Prep 1.6.0 release
1 parent 24f5a92 commit 5178ad6

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## Master (unreleased)
44

5+
## 1.6.0 [](https://github.com/activeadmin/arbre/compare/v1.5.0...v1.6.0)
6+
7+
* Drop support for Ruby 2.6. [#345][] by [@alejandroperea][]
8+
* Add 'main' to HTML5 elements. [#270][] by [@mynnx][]
9+
* Support nested attribute hashes rendered as hyphenated attributes. [#451][] [@Ikariusrb][]
10+
* Lazy-load rails interactions. [#456][] [@ngan][]
11+
512
## 1.5.0 [](https://github.com/activeadmin/arbre/compare/v1.4.0...v1.5.0)
613

714
* Avoid mutating string literals. [#292][] by [@tomgilligan][]
@@ -36,7 +43,7 @@ _No changes_.
3643
## 1.1.1 [](https://github.com/activeadmin/arbre/compare/v1.1.0...v1.1.1)
3744

3845
* Use mime-types 2.x for Ruby 1.9 by [@timoschilling][]
39-
* Verify Ruby 2.3 support. [#59][] by [@dlackty][]
46+
* Verify Ruby 2.3 support. [#59][] by [@dlackty][]
4047

4148
## 1.1.0 [](https://github.com/activeadmin/arbre/compare/v1.0.3...v1.1.0)
4249

@@ -105,10 +112,14 @@ Initial release and extraction from Active Admin
105112
[#202]: https://github.com/activeadmin/arbre/pull/202
106113
[#205]: https://github.com/activeadmin/arbre/pull/205
107114
[#242]: https://github.com/activeadmin/arbre/pull/242
115+
[#270]: https://github.com/activeadmin/arbre/pull/270
108116
[#292]: https://github.com/activeadmin/arbre/pull/292
109117
[#314]: https://github.com/activeadmin/arbre/pull/314
110118
[#315]: https://github.com/activeadmin/arbre/pull/315
111119
[#318]: https://github.com/activeadmin/arbre/pull/318
120+
[#345]: https://github.com/activeadmin/arbre/pull/345
121+
[#451]: https://github.com/activeadmin/arbre/pull/451
122+
[#456]: https://github.com/activeadmin/arbre/pull/456
112123

113124
[@aramvisser]: https://github.com/aramvisser
114125
[@LTe]: https://github.com/LTe
@@ -127,3 +138,6 @@ Initial release and extraction from Active Admin
127138
[@varyonic]: https://github.com/varyonic
128139
[@tagliala]: https://github.com/tagliala
129140
[@tomgilligan]: https://github.com/tomgilligan
141+
[@mynnx]: https://github.com/mynnx
142+
[@Ikariusrb]: https://github.com/Ikariusrb
143+
[@ngan]: https://github.com/ngan

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
arbre (1.5.0)
4+
arbre (1.6.0)
55
activesupport (>= 3.0.0, < 7.1)
66
ruby2_keywords (>= 0.0.2, < 1.0)
77

gemfiles/rails_61/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
arbre (1.5.0)
4+
arbre (1.6.0)
55
activesupport (>= 3.0.0, < 7.1)
66
ruby2_keywords (>= 0.0.2, < 1.0)
77

lib/arbre/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module Arbre
3-
VERSION = "1.5.0"
3+
VERSION = "1.6.0"
44
end

0 commit comments

Comments
 (0)