diff --git a/CHANGELOG.md b/CHANGELOG.md index bae731ee2..2043bd9d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Spina CMS Changelog -## 2.2 +## 2.4 + +### 2.4.0 (September 9th, 2021) +* Added option to exclude view templates from resources +* Added HTML email templates +* Added configurable mailer defaults +* Updated Hotwire dependencies +* Fixed exception for missing image attachments +* Refactored importmap config to importmap.rb + +## 2.3 ### 2.3.5 (August 22nd, 2021) * Changed to esm-compatible build of Trix to fix bug in Firefox @@ -28,6 +38,8 @@ * Fixed focus CSS-bug in Chrome * Removed old importmap helpers +# 2.2 + ### 2.2.0 (July 26th, 2021) * Added download link to attachments in media library * Added optional decorator loading to configuration diff --git a/Gemfile.lock b/Gemfile.lock index 4ff96a19b..8b21627df 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - spina (2.3.5) + spina (2.4.0) ancestry attr_json babosa @@ -105,7 +105,7 @@ GEM erubi (1.10.0) factory_bot (6.2.0) activesupport (>= 5.0.0) - ffi (1.15.3) + ffi (1.15.4) globalid (0.5.2) activesupport (>= 5.0) i18n (1.8.10) @@ -206,7 +206,7 @@ GEM request_store (1.5.0) rack (>= 1.4) ruby-progressbar (1.11.0) - ruby-vips (2.1.2) + ruby-vips (2.1.3) ffi (~> 1.12) sass-rails (6.0.0) sassc-rails (~> 2.1, >= 2.1.1) diff --git a/lib/spina/version.rb b/lib/spina/version.rb index 1e4d17c85..eb3a2c5f4 100644 --- a/lib/spina/version.rb +++ b/lib/spina/version.rb @@ -1,3 +1,3 @@ module Spina - VERSION = "2.3.5" + VERSION = "2.4.0" end