diff --git a/Appraisals b/Appraisals index bb2c105..1ffe92e 100644 --- a/Appraisals +++ b/Appraisals @@ -1,10 +1,5 @@ # frozen_string_literal: true -appraise 'rails52-activeadmin20' do - gem 'activeadmin', '~> 2.0.0' - gem 'rails', '~> 5.2.0' -end - appraise 'rails60-activeadmin22' do gem 'activeadmin', '~> 2.2.0' gem 'rails', '~> 6.0.0' diff --git a/CHANGELOG.md b/CHANGELOG.md index 53884db..8f82bf1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ An Active Admin plugin to use Quill Rich Text Editor. +## v1.1.0 - 2023-08-20 + +- Support ActiveAdmin 3.x +- Minor tests config improvements + ## v1.0.0 - 2022-04-18 - Set minimum Ruby version to 2.6.0 diff --git a/gemfiles/rails60_activeadmin.gemfile.lock b/gemfiles/rails60_activeadmin.gemfile.lock index 032446e..fe12430 100644 --- a/gemfiles/rails60_activeadmin.gemfile.lock +++ b/gemfiles/rails60_activeadmin.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - activeadmin_quill_editor (1.0.0) + activeadmin_quill_editor (1.1.0) activeadmin (>= 2.0, < 4) GEM @@ -151,8 +151,12 @@ GEM matrix (0.4.2) method_source (1.0.0) mini_mime (1.1.2) + mini_portile2 (2.8.4) minitest (5.15.0) nio4r (2.5.8) + nokogiri (1.13.3) + mini_portile2 (~> 2.8.0) + racc (~> 1.4) nokogiri (1.13.3-x86_64-darwin) racc (~> 1.4) nokogiri (1.13.3-x86_64-linux) @@ -285,6 +289,7 @@ GEM zeitwerk (2.5.4) PLATFORMS + arm64-darwin-22 x86_64-darwin-21 x86_64-linux diff --git a/gemfiles/rails60_activeadmin22.gemfile.lock b/gemfiles/rails60_activeadmin22.gemfile.lock index a42c22b..bfe8785 100644 --- a/gemfiles/rails60_activeadmin22.gemfile.lock +++ b/gemfiles/rails60_activeadmin22.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - activeadmin_quill_editor (1.0.0) + activeadmin_quill_editor (1.1.0) activeadmin (>= 2.0, < 4) GEM @@ -159,8 +159,12 @@ GEM matrix (0.4.2) method_source (1.0.0) mini_mime (1.1.2) + mini_portile2 (2.8.4) minitest (5.15.0) nio4r (2.5.8) + nokogiri (1.13.3) + mini_portile2 (~> 2.8.0) + racc (~> 1.4) nokogiri (1.13.3-x86_64-darwin) racc (~> 1.4) nokogiri (1.13.3-x86_64-linux) @@ -304,6 +308,7 @@ GEM zeitwerk (2.5.4) PLATFORMS + arm64-darwin-22 x86_64-darwin-21 x86_64-linux diff --git a/gemfiles/rails61_activeadmin.gemfile.lock b/gemfiles/rails61_activeadmin.gemfile.lock index b32c404..afe1d78 100644 --- a/gemfiles/rails61_activeadmin.gemfile.lock +++ b/gemfiles/rails61_activeadmin.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - activeadmin_quill_editor (1.0.0) + activeadmin_quill_editor (1.1.0) activeadmin (>= 2.0, < 4) GEM @@ -154,8 +154,12 @@ GEM matrix (0.4.2) method_source (1.0.0) mini_mime (1.1.2) + mini_portile2 (2.8.4) minitest (5.15.0) nio4r (2.5.8) + nokogiri (1.13.3) + mini_portile2 (~> 2.8.0) + racc (~> 1.4) nokogiri (1.13.3-x86_64-darwin) racc (~> 1.4) nokogiri (1.13.3-x86_64-linux) @@ -282,6 +286,7 @@ GEM zeitwerk (2.5.4) PLATFORMS + arm64-darwin-22 x86_64-darwin-21 x86_64-linux diff --git a/gemfiles/rails61_activeadmin29.gemfile.lock b/gemfiles/rails61_activeadmin29.gemfile.lock index 2fc7ae9..ca50eab 100644 --- a/gemfiles/rails61_activeadmin29.gemfile.lock +++ b/gemfiles/rails61_activeadmin29.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - activeadmin_quill_editor (1.0.0) + activeadmin_quill_editor (1.1.0) activeadmin (>= 2.0, < 4) GEM @@ -154,8 +154,12 @@ GEM matrix (0.4.2) method_source (1.0.0) mini_mime (1.1.2) + mini_portile2 (2.8.4) minitest (5.15.0) nio4r (2.5.8) + nokogiri (1.13.3) + mini_portile2 (~> 2.8.0) + racc (~> 1.4) nokogiri (1.13.3-x86_64-darwin) racc (~> 1.4) nokogiri (1.13.3-x86_64-linux) @@ -282,6 +286,7 @@ GEM zeitwerk (2.5.4) PLATFORMS + arm64-darwin-22 x86_64-darwin-21 x86_64-linux diff --git a/gemfiles/rails70_activeadmin.gemfile.lock b/gemfiles/rails70_activeadmin.gemfile.lock index d642e8b..f0c803b 100644 --- a/gemfiles/rails70_activeadmin.gemfile.lock +++ b/gemfiles/rails70_activeadmin.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - activeadmin_quill_editor (1.0.0) + activeadmin_quill_editor (1.1.0) activeadmin (>= 2.0, < 4) GEM diff --git a/lib/activeadmin/quill_editor/version.rb b/lib/activeadmin/quill_editor/version.rb index a7e8817..08d142f 100644 --- a/lib/activeadmin/quill_editor/version.rb +++ b/lib/activeadmin/quill_editor/version.rb @@ -2,7 +2,7 @@ module ActiveAdmin module QuillEditor - VERSION = '1.0.0' + VERSION = '1.1.0' QUILL_VERSION = '1.3.7' end end diff --git a/package.json b/package.json index 8669aa1..45dd2de 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "activeadmin_quill_editor", - "version": "1.0.0", + "version": "1.1.0", "description": "Quill Editor for ActiveAdmin", "author": "Mattia Roccoberton ", "license": "MIT",