diff --git a/CHANGELOG.md b/CHANGELOG.md index b299593e76..145829d125 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,28 @@ ## [Unreleased](https://github.com/sferik/rails_admin/tree/HEAD) -[Full Changelog](https://github.com/sferik/rails_admin/compare/v2.0.2...HEAD) +[Full Changelog](https://github.com/sferik/rails_admin/compare/v2.1.0...HEAD) + + +## [2.1.0](https://github.com/sferik/rails_admin/tree/v2.1.0) - 2021-02-28 + +[Full Changelog](https://github.com/sferik/rails_admin/compare/v2.0.2...v2.1.0) + +### Added +- Ability to set default filter operator for fields ([#3318](https://github.com/sferik/rails_admin/pull/3318)) +- Shrine 3.x support ([#3257](https://github.com/sferik/rails_admin/pull/3257)) +- Rails 6.1 compatibility ([f0c46f1e](https://github.com/sferik/rails_admin/commit/f0c46f1e128b5d31d812ff3a80d15db8692c848b)) + +### Fixed +- Some translation entries of filtering-multiselect weren't localizable ([#3315](https://github.com/sferik/rails_admin/pull/3315)) +- Thumbnail generation breaks when used with ActiveStorage 6.x and ruby-vips ([#3255](https://github.com/sferik/rails_admin/pull/3255), [2dba791c](https://github.com/sferik/rails_admin/commit/2dba791c9135b3202d662f90fac443d282869bd6)) +- Hide present/blank filter options for required fields ([#3340](https://github.com/sferik/rails_admin/pull/3340)) +- Fix to show correct filename for multiple attachments ([#3295](https://github.com/sferik/rails_admin/pull/3295)) +- Fix encoding detection was incompatible with DB connection proxies like active_record_host_pool gem ([#3313](https://github.com/sferik/rails_admin/pull/3313)) +- Fix hidden fields breaking indentation ([#3278](https://github.com/sferik/rails_admin/pull/3278), [#2487](https://github.com/sferik/rails_admin/issues/2487)) + +### Removed +- Remove `yell_for_non_accessible_fields` option since it has no effect since 0.5.0 ([#3249](https://github.com/sferik/rails_admin/pull/3249)) ## [2.0.2](https://github.com/sferik/rails_admin/tree/v2.0.2) - 2020-03-17 diff --git a/README.md b/README.md index 75bfcbbbc5..fd425d078e 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,7 @@ This library aims to support and is [tested against][ghactions] the following Ru * Ruby 2.5 * Ruby 2.6 * Ruby 2.7 +* Ruby 3.0 * [JRuby][] [jruby]: http://jruby.org/ diff --git a/lib/rails_admin/version.rb b/lib/rails_admin/version.rb index 4b26bc8dda..6d282994af 100644 --- a/lib/rails_admin/version.rb +++ b/lib/rails_admin/version.rb @@ -1,8 +1,8 @@ module RailsAdmin class Version MAJOR = 2 - MINOR = 0 - PATCH = 2 + MINOR = 1 + PATCH = 0 PRE = nil class << self