Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump to version 1.1.0 #27

Merged
merged 1 commit into from
Feb 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

An Active Admin plugin to use Trumbowyg Editor.

## v1.1.0 - 2024-02-18

- Set minimum Ruby version to 3.0.0
- Set minimum ActiveAdmin version to 2.9.0
- Update CI configuration

## v1.0.0 - 2022-04-19

- Set minimum Ruby version to 2.6.0
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ Please :star: if you like it.

## Install

*NOTE*: if you are using Ruby < 3.0, please use Activeadmin Trumbowyg 1.0.0

- Add a SASS/SCSS gem to your Gemfile (ex. `gem 'sassc'`)
- After installing Active Admin, add to your Gemfile: `gem 'activeadmin_trumbowyg'` (and execute *bundle*)
- Add at the end of your Active Admin styles (_app/assets/stylesheets/active_admin.scss_):
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails61_activeadmin.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
activeadmin_trumbowyg (1.0.0)
activeadmin_trumbowyg (1.1.0)
activeadmin (>= 2.9.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails61_activeadmin29.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
activeadmin_trumbowyg (1.0.0)
activeadmin_trumbowyg (1.1.0)
activeadmin (>= 2.9.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails70_activeadmin.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
activeadmin_trumbowyg (1.0.0)
activeadmin_trumbowyg (1.1.0)
activeadmin (>= 2.9.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/activeadmin/trumbowyg/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module ActiveAdmin
module Trumbowyg
VERSION = '1.0.0'
VERSION = '1.1.0'
end
end
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "activeadmin_trumbowyg",
"version": "1.0.0",
"version": "1.1.0",
"description": "An Active Admin plugin to use Trumbowyg as WYSIWYG editor in form inputs.",
"main": "index.js",
"repository": "https://github.com/blocknotes/activeadmin_trumbowyg",
Expand Down
Loading