Skip to content

Commit dda2aa9

Browse files
authored
Merge pull request #18 from thambley/pr-16
prepare release
2 parents 929d8d9 + d247e40 commit dda2aa9

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## 2.0.2
6+
7+
### Changed
8+
9+
* Remove ActiveAdmin runtime dependency version limit '<2' [#16] by [@reaper][]
10+
511
## 2.0.1
612

713
### Fixed
@@ -61,7 +67,9 @@
6167
[#8]: https://github.com/thambley/activeadmin-xls/issues/8
6268
[#11]: https://github.com/thambley/activeadmin-xls/pull/11
6369
[#13]: https://github.com/thambley/activeadmin-xls/issues/13
70+
[#16]: https://github.com/thambley/activeadmin-xls/pull/16
6471

6572
[@rewritten]: https://github.com/rewritten
6673
[@ejaypcanaria]: https://github.com/ejaypcanaria
67-
[@cpunion]: https://github.com/cpunion
74+
[@cpunion]: https://github.com/cpunion
75+
[@reaper]: https://github.com/reaper

README.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following to your Gemfile. All resource index views will now include a l
2222
gem 'activeadmin-xls', '~>2.0.0'
2323
```
2424

25-
For Active Admin 1.0, you will also have to update config/initializers/active_admin.rb. Update the download\_links setting to include xls:
25+
For Active Admin 1.0 and above, you will also have to update config/initializers/active_admin.rb. Update the download\_links setting to include xls:
2626

2727
```ruby
2828
config.download_links = %i[csv xml json xls]
@@ -160,6 +160,20 @@ BUNDLE_GEMFILE=gemfiles/rails_52.gemfile bundle exec rake setup
160160
BUNDLE_GEMFILE=gemfiles/rails_52.gemfile bundle exec rake
161161
```
162162

163+
### Rails 6.0
164+
165+
```text
166+
bundle install --gemfile=gemfiles/rails_60.gemfile
167+
```
168+
169+
```text
170+
BUNDLE_GEMFILE=gemfiles/rails_60.gemfile bundle exec rake setup
171+
```
172+
173+
```text
174+
BUNDLE_GEMFILE=gemfiles/rails_60.gemfile bundle exec rake
175+
```
176+
163177
[Active Admin]:https://www.activeadmin.info/
164178
[activeadmin-axlsx]:https://github.com/randym/activeadmin-axlsx
165179
[to_xls]:https://github.com/splendeo/to_xls
@@ -174,4 +188,4 @@ BUNDLE_GEMFILE=gemfiles/rails_52.gemfile bundle exec rake
174188
[codecov_badge]: https://codecov.io/gh/thambley/activeadmin-xls/branch/master/graph/badge.svg
175189
[codecov]: https://codecov.io/gh/thambley/activeadmin-xls
176190
[inch_badge]: http://inch-ci.org/github/thambley/activeadmin-xls.svg?branch=master
177-
[inch]: http://inch-ci.org/github/thambley/activeadmin-xls
191+
[inch]: http://inch-ci.org/github/thambley/activeadmin-xls

lib/active_admin/xls/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module ActiveAdmin
22
module Xls
33
# ActiveAdmin XLS gem version
4-
VERSION = '2.0.1'.freeze
4+
VERSION = '2.0.2'.freeze
55
end
66
end

0 commit comments

Comments
 (0)