Skip to content

Commit 2a0efd9

Browse files
committed
Release Arbo 1.2.
1 parent 65638f7 commit 2a0efd9

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 1.2.0 [](https://github.com/varyonic/arbo/compare/v1.1.0...v1.1.1)
4+
5+
* Fix rendering `link_to` with a block in a arbre template. [#64][] by [@varyonic][]
6+
* Fix deprecation warning about single arity template handlers on Rails 6. [#110][] by [@aramvisser][]
7+
* Fix ruby 2.7 kwargs warnings. [#205][] by [@deivid-rodriguez][]
8+
* Support nested attribute hashes rendered as hyphenated attributes. [#451][] [@Ikariusrb][]
9+
10+
* Implement `render_in` alternative to `to_s`. [#1][] by [@varyonic][]
11+
* Remove build_head and build_body from HTML::Document tag. [#2][] by [@varyonic][]
12+
313
## 1.1.1 [](https://github.com/activeadmin/arbre/compare/v1.1.0...v1.1.1)
414

515
* Use mime-types 2.x for Ruby 1.9 by [@timoschilling][]
@@ -50,7 +60,6 @@
5060

5161
Initial release and extraction from Active Admin
5262

53-
<!--- The following link definition list is generated by PimpMyChangelog --->
5463
[#4]: https://github.com/activeadmin/arbre/issues/4
5564
[#6]: https://github.com/activeadmin/arbre/issues/6
5665
[#7]: https://github.com/activeadmin/arbre/issues/7
@@ -62,13 +71,25 @@ Initial release and extraction from Active Admin
6271
[#40]: https://github.com/activeadmin/arbre/issues/40
6372
[#49]: https://github.com/activeadmin/arbre/issues/49
6473
[#59]: https://github.com/activeadmin/arbre/issues/59
74+
[#64]: https://github.com/activeadmin/arbre/pull/64
75+
[#110]: https://github.com/activeadmin/arbre/pull/110
76+
[#205]: https://github.com/activeadmin/arbre/pull/205
77+
[#451]: https://github.com/activeadmin/arbre/pull/451
78+
79+
[#1]: https://github.com/varyonic/arbo/pull/1
80+
[#2]: https://github.com/varyonic/arbo/pull/2
81+
82+
[@aramvisser]: https://github.com/aramvisser
83+
[@deivid-rodriguez]: https://github.com/deivid-rodriguez
6584
[@LTe]: https://github.com/LTe
6685
[@OscarBarrett]: https://github.com/OscarBarrett
6786
[@alexesDev]: https://github.com/alexesDev
6887
[@dtaniwaki]: https://github.com/dtaniwaki
6988
[@gregbell]: https://github.com/gregbell
89+
[@Ikariusrb]: https://github.com/Ikariusrb
7090
[@jpmckinney]: https://github.com/jpmckinney
7191
[@kaapa]: https://github.com/kaapa
7292
[@ramontayag]: https://github.com/ramontayag
7393
[@seanlinsley]: https://github.com/seanlinsley
7494
[@timoschilling]: https://github.com/timoschilling
95+
[@varyonic]: https://github.com/varyonic

CONTRIBUTING.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Contributing
2+
3+
To test `bundle exec rake`

lib/arbo/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Arbo
2-
VERSION = '1.1.1'
2+
VERSION = '1.2.0'
33
end

0 commit comments

Comments
 (0)