Release v3.1.0 (#848)

* Update changelog and version.

* Test against Ruby 2.6.2

* Test against 2.5.4.
This commit is contained in:
Cliff Braton 2019-03-14 12:42:09 -05:00 committed by GitHub
parent d4d6de849b
commit 395b647fc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 3 deletions

View File

@ -8,8 +8,8 @@ services:
rvm:
- 2.3.5
- 2.4.3
- 2.5.3
- 2.6.0
- 2.5.4
- 2.6.2
- ruby-head
matrix:

View File

@ -1,5 +1,10 @@
# Draper Changelog
## 3.1.0
* Rails 6 support [#841](https://github.com/drapergem/draper/pull/841)
* Include ORM query methods in `CollectionDecorator` (e.g. `includes`) [#845](https://github.com/drapergem/draper/pull/845)
* Document the fix for view context leaking in specs [#847](https://github.com/drapergem/draper/pull/847)
## 3.0.1
* Let `decorator_class` infer anonymous class decorator from superclass [#820](https://github.com/drapergem/draper/pull/820)
* When inferring decorator fails, show original class instead of `ActiveRecord::Base` [#821](https://github.com/drapergem/draper/pull/821)

View File

@ -1,3 +1,3 @@
module Draper
VERSION = '3.0.1'
VERSION = '3.1.0'
end