Skip to content
This repository was archived by the owner on May 18, 2025. It is now read-only.

Commit 097cf67

Browse files
author
Mattia Roccoberton
committed
Changelog update
1 parent 5440e5b commit 097cf67

3 files changed

Lines changed: 40 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# medium-editor for ActiveAdmin
2+
3+
An Active Admin plugin to use Medium 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.2.14 - 2021-03-20
14+
15+
- Fix editor loading with Turbolinks
16+
- Specs improvements
17+
18+
## v0.2.12 - 2020-09-09
19+
20+
- JS refactoring
21+
- Minor specs improvements
22+
- README changes
23+
24+
## v0.2.9 - 2020-09-04
25+
26+
- Reset some styles manually to the defaults to render better the elements in the editor
27+
28+
## v0.2.8 - 2020-09-03
29+
30+
- Update MediumEditor to commit `d113a744`
31+
- Add specs for editor in nested resources
32+
- Add Rubocop and remove SimpleCov gems

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
# Active Admin Medium Editor
22
[![gem version](https://badge.fury.io/rb/activeadmin_medium_editor.svg)](https://badge.fury.io/rb/activeadmin_medium_editor)
33
[![Gem downloads](https://badgen.net/rubygems/dt/activeadmin_medium_editor)](https://rubygems.org/gems/activeadmin_medium_editor)
4-
54
[![linters](https://github.com/blocknotes/activeadmin_medium_editor/actions/workflows/linters.yml/badge.svg)](https://github.com/blocknotes/activeadmin_medium_editor/actions/workflows/linters.yml)
6-
[![specs Rails 6.0](https://github.com/blocknotes/activeadmin_medium_editor/actions/workflows/specs_rails60.yml/badge.svg)](https://github.com/blocknotes/activeadmin_medium_editor/actions/workflows/specs_rails60.yml)
75
[![specs Rails 6.1](https://github.com/blocknotes/activeadmin_medium_editor/actions/workflows/specs_rails61.yml/badge.svg)](https://github.com/blocknotes/activeadmin_medium_editor/actions/workflows/specs_rails61.yml)
86
[![specs Rails 7.0](https://github.com/blocknotes/activeadmin_medium_editor/actions/workflows/specs_rails70.yml/badge.svg)](https://github.com/blocknotes/activeadmin_medium_editor/actions/workflows/specs_rails70.yml)
97

@@ -66,6 +64,10 @@ f.input :description, as: :medium_editor, input_html: { data: { options: { toolb
6664

6765
For details about the buttons' effect please refer to medium-editor documentation.
6866

67+
## Changelog
68+
69+
The changelog is available [here](CHANGELOG.md).
70+
6971
## Do you like it? Star it!
7072

7173
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_medium_editor.gemspec

Lines changed: 4 additions & 2 deletions
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
20-
spec.metadata['source_code_uri'] = spec.homepage
19+
spec.metadata['homepage_uri'] = spec.homepage
20+
spec.metadata['changelog_uri'] = 'https://github.com/blocknotes/activeadmin_medium_editor/blob/master/CHANGELOG.md'
21+
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)