Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
thambley committed Oct 8, 2019
1 parent 21922af commit d247e40
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## 2.0.2

### Changed

* Remove ActiveAdmin runtime dependency version limit '<2' [#16] by [@reaper][]

## 2.0.1

### Fixed
Expand Down Expand Up @@ -61,7 +67,9 @@
[#8]: https://github.com/thambley/activeadmin-xls/issues/8
[#11]: https://github.com/thambley/activeadmin-xls/pull/11
[#13]: https://github.com/thambley/activeadmin-xls/issues/13
[#16]: https://github.com/thambley/activeadmin-xls/pull/16

[@rewritten]: https://github.com/rewritten
[@ejaypcanaria]: https://github.com/ejaypcanaria
[@cpunion]: https://github.com/cpunion
[@cpunion]: https://github.com/cpunion
[@reaper]: https://github.com/reaper
18 changes: 16 additions & 2 deletions README.md
Expand Up @@ -22,7 +22,7 @@ Add the following to your Gemfile. All resource index views will now include a l
gem 'activeadmin-xls', '~>2.0.0'
```

For Active Admin 1.0, you will also have to update config/initializers/active_admin.rb. Update the download\_links setting to include xls:
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:

```ruby
config.download_links = %i[csv xml json xls]
Expand Down Expand Up @@ -160,6 +160,20 @@ BUNDLE_GEMFILE=gemfiles/rails_52.gemfile bundle exec rake setup
BUNDLE_GEMFILE=gemfiles/rails_52.gemfile bundle exec rake
```

### Rails 6.0

```text
bundle install --gemfile=gemfiles/rails_60.gemfile
```

```text
BUNDLE_GEMFILE=gemfiles/rails_60.gemfile bundle exec rake setup
```

```text
BUNDLE_GEMFILE=gemfiles/rails_60.gemfile bundle exec rake
```

[Active Admin]:https://www.activeadmin.info/
[activeadmin-axlsx]:https://github.com/randym/activeadmin-axlsx
[to_xls]:https://github.com/splendeo/to_xls
Expand All @@ -174,4 +188,4 @@ BUNDLE_GEMFILE=gemfiles/rails_52.gemfile bundle exec rake
[codecov_badge]: https://codecov.io/gh/thambley/activeadmin-xls/branch/master/graph/badge.svg
[codecov]: https://codecov.io/gh/thambley/activeadmin-xls
[inch_badge]: http://inch-ci.org/github/thambley/activeadmin-xls.svg?branch=master
[inch]: http://inch-ci.org/github/thambley/activeadmin-xls
[inch]: http://inch-ci.org/github/thambley/activeadmin-xls
2 changes: 1 addition & 1 deletion lib/active_admin/xls/version.rb
@@ -1,6 +1,6 @@
module ActiveAdmin
module Xls
# ActiveAdmin XLS gem version
VERSION = '2.0.1'.freeze
VERSION = '2.0.2'.freeze
end
end

0 comments on commit d247e40

Please sign in to comment.