From df944277b53ab006abb9d4f71681afbdb25c6fed Mon Sep 17 00:00:00 2001 From: Mattia Roccoberton Date: Tue, 15 Apr 2025 08:21:34 +0200 Subject: [PATCH] chore: Bump version to 2.0.0 --- CHANGELOG.md | 4 ++++ README.md | 4 +--- lib/activeadmin/quill_editor/version.rb | 2 +- package.json | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ec400e..1981d53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ An Active Admin plugin to use Quill Rich Text Editor. +## v2.0.0 - 2025-04-15 + +- Update Quill from 1.3.7 to 2.0.3 + ## v1.3.0 - 2025-03-18 - Javascript API: expose Quill editor query functions diff --git a/README.md b/README.md index 163e26e..59af29b 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Please :star: if you like it. ## Install -_NOTE_: Ruby 2.7 is supported until version 1.1.0 +_NOTE_: the gem 2.x provide Quill 2.x, while Quill 1.x is provided with the gem version 1.x After installing Active Admin, add to your Gemfile: `gem 'activeadmin_quill_editor'` (and execute *bundle*) @@ -35,8 +35,6 @@ If you installed Active Admin without Webpacker support (default for now): //= require activeadmin/quill_editor_input ``` -> **UPDATE FROM VERSION <= 2.0**: please add to your _app/assets/stylesheets/active_admin.scss_ the line `@import 'activeadmin/quill_editor/quill.snow';` - If you installed Active Admin with Webpacker support: - Execute in your project root: diff --git a/lib/activeadmin/quill_editor/version.rb b/lib/activeadmin/quill_editor/version.rb index 81c93bd..a43b09f 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.3.0' + VERSION = '2.0.0' QUILL_VERSION = '2.0.3' end end diff --git a/package.json b/package.json index fb9a231..89355d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "activeadmin_quill_editor", - "version": "1.3.0", + "version": "2.0.0", "description": "Quill Editor for ActiveAdmin", "author": "Mattia Roccoberton ", "license": "MIT",