diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cef6593e..3189e4558 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Spina CMS Changelog +## 2.15 + +### 2.15.0 (May 10th, 2023) +_Notice: ViewComponent was updated to v3 in this release, make sure your own components use the new Slots API_ +* Updated ViewComponent to v3 +* Updated gem dependencies +* Fixed german translations + ## 2.14 ### 2.14.0 (February 22nd, 2023) diff --git a/Gemfile.lock b/Gemfile.lock index fa519f7b8..951310897 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - spina (2.14.0) + spina (2.15.0) ancestry attr_json babosa @@ -95,7 +95,7 @@ GEM ancestry (4.3.3) activerecord (>= 5.2.6) ansi (1.5.0) - attr_json (2.0.0) + attr_json (2.0.1) activerecord (>= 6.0.0, < 7.1) babosa (2.0.0) bcrypt (3.1.18) @@ -266,7 +266,7 @@ GEM railties (>= 6.0.0) thor (1.2.1) timeout (0.3.2) - turbo-rails (1.3.3) + turbo-rails (1.4.0) actionpack (>= 6.0.0) activejob (>= 6.0.0) railties (>= 6.0.0) diff --git a/lib/spina/version.rb b/lib/spina/version.rb index 28588b8e5..1d4d6c37d 100644 --- a/lib/spina/version.rb +++ b/lib/spina/version.rb @@ -1,3 +1,3 @@ module Spina - VERSION = "2.14.0" + VERSION = "2.15.0" end