diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ca0cb12..d4ccb72e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Unreleased -#### Changed +### 1.10.0 +#### Added + +* Added Shrine support for image row and column [#396](https://github.com/platanus/activeadmin_addons/pull/396) +* Added Markdown row and column [#409](https://github.com/platanus/activeadmin_addons/pull/409) * Added translation support for Rails built-in enums in select filters and tag column/row [#442](https://github.com/platanus/activeadmin_addons/pull/442) ### 1.9.0 diff --git a/Gemfile.lock b/Gemfile.lock index a27bcd78..2274628a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -8,7 +8,7 @@ GIT PATH remote: . specs: - activeadmin_addons (1.9.0) + activeadmin_addons (1.10.0) active_material railties redcarpet @@ -265,7 +265,7 @@ GEM rb-fsevent (0.11.2) rb-inotify (0.10.1) ffi (~> 1.0) - redcarpet (3.5.1) + redcarpet (3.6.0) regexp_parser (1.6.0) require_all (3.0.0) responders (3.0.1) @@ -338,7 +338,7 @@ GEM terrapin (0.6.0) climate_control (>= 0.0.3, < 1.0) thor (1.2.1) - tilt (2.0.11) + tilt (2.1.0) tzinfo (2.0.5) concurrent-ruby (~> 1.0) unicode-display_width (1.4.1) diff --git a/lib/activeadmin_addons/version.rb b/lib/activeadmin_addons/version.rb index 39ccbd8a..7b7529a3 100644 --- a/lib/activeadmin_addons/version.rb +++ b/lib/activeadmin_addons/version.rb @@ -1,3 +1,3 @@ module ActiveadminAddons - VERSION = "1.9.0" + VERSION = "1.10.0" end