Skip to content

Commit c560dd5

Browse files
author
Mattia Roccoberton
committed
Changelog update
1 parent 597cae7 commit c560dd5

File tree

3 files changed

+61
-2
lines changed

3 files changed

+61
-2
lines changed

CHANGELOG.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Quill Editor for ActiveAdmin
2+
3+
An Active Admin plugin to use Quill Rich Text Editor.
4+
5+
## v1.0.0 - 2022-04-18
6+
7+
- Set minimum Ruby version to 2.6.0
8+
- Remove `sassc` dependency
9+
- Enable Ruby 3.0 specs support
10+
- Enable Rails 7.0 specs support
11+
- Internal improvements
12+
13+
## v0.3.4 - 2021-03-16
14+
15+
- Fix editor loading with Turbolinks
16+
17+
## v0.3.2 - 2021-03-14
18+
19+
- Specs improvements
20+
- Minor internal changes
21+
22+
## v0.3.0 - 2020-10-01
23+
24+
- Add Webpacker support
25+
26+
## v0.2.14 - 2020-09-10
27+
28+
- JS: enable strict directive
29+
- Minor specs improvement
30+
31+
## v0.2.12 - 2020-09-08
32+
33+
- JS refactoring
34+
35+
## v0.2.10 - 2020-09-05
36+
37+
- Include Image Uploader plugin
38+
39+
## v0.2.9 - 2020-09-04
40+
41+
- Fix not working alignments (issue #8)
42+
- Fix empty editor problem which produces `<p><br></p>` (pull request #9)
43+
44+
## v0.2.8 - 2020-09-03
45+
46+
- Minor style improvements
47+
- Add specs for editor in nested resources
48+
- Add Rubocop and remove SimpleCov gems
49+
50+
## v0.2.4 - 2020-09-01
51+
52+
- Update Quill editor to version 1.3.7
53+
- Add minimum specs (using RSpec)
54+
- Minor internal changes

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
[![gem version](https://badge.fury.io/rb/activeadmin_quill_editor.svg)](https://badge.fury.io/rb/activeadmin_quill_editor)
33
[![gem downloads](https://badgen.net/rubygems/dt/activeadmin_quill_editor)](https://rubygems.org/gems/activeadmin_quill_editor)
44
[![linters](https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/linters.yml/badge.svg)](https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/linters.yml)
5-
[![specs Rails 6.0](https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails60.yml/badge.svg)](https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails60.yml)
65
[![specs Rails 6.1](https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails61.yml/badge.svg)](https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails61.yml)
76
[![specs Rails 7.0](https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails70.yml/badge.svg)](https://github.com/blocknotes/activeadmin_quill_editor/actions/workflows/specs_rails70.yml)
87

@@ -98,6 +97,10 @@ Consider that this is just a basic example: images are uploaded as soon as they
9897
the *upload_admin_post_path*) and it doesn't provide a way to remove images (just deleting them from
9998
the editor will not destroy them, you'll need to implement a purge logic for that).
10099

100+
## Changelog
101+
102+
The changelog is available [here](CHANGELOG.md).
103+
101104
## Do you like it? Star it!
102105

103106
If you use this component just star it. A developer is more motivated to improve a project when there is some interest. My other [Active Admin components](https://github.com/blocknotes?utf8=✓&tab=repositories&q=activeadmin&type=source).

activeadmin_quill_editor.gemspec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ Gem::Specification.new do |spec|
1616

1717
spec.required_ruby_version = '>= 2.6.0'
1818

19-
spec.metadata['homepage_uri'] = spec.homepage
19+
spec.metadata['homepage_uri'] = spec.homepage
20+
spec.metadata['changelog_uri'] = 'https://github.com/blocknotes/activeadmin_quill_editor/blob/master/CHANGELOG.md'
2021
spec.metadata['source_code_uri'] = spec.homepage
22+
2123
spec.metadata['rubygems_mfa_required'] = 'true'
2224

2325
spec.files = Dir['{app,lib}/**/*', 'LICENSE.txt', 'Rakefile', 'README.md']

0 commit comments

Comments
 (0)