Skip to content

Commit ea2d2ae

Browse files
authored
Merge pull request #460 from platanus/drop-ruby2.6
Define required ruby version to >=2.7.0
2 parents 7f77034 + 2af7459 commit ea2d2ae

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ workflows:
131131
- test:
132132
matrix:
133133
parameters:
134-
ruby-version: ["2.6", "2.7", "3.0", "3.1"]
134+
ruby-version: ["2.7", "3.0", "3.1"]
135135
- deploy:
136136
context: org-global
137137
filters:

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ AllCops:
66
- "bin/**/*"
77
- "spec/dummy/db/schema.rb"
88
DisplayCopNames: false
9-
TargetRubyVersion: 2.5
9+
TargetRubyVersion: 2.7
1010
Rails:
1111
Enabled: true
1212
Layout/AlignParameters:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
### Unreleased
66

7+
#### Breaking changes
8+
* Defines required ruby version to >=2.7.0 [#460](https://github.com/platanus/activeadmin_addons/pull/460)
9+
710
### 2.0.0.beta-0
811

12+
#### Breaking changes
913
* Replaces [Select2](https://select2.org/) with [Slim Select](https://slimselectjs.com/) to make it easier to work with newer bundlers like esbuild [#448](https://github.com/platanus/activeadmin_addons/pull/448)
1014
* Removes support for Paperclip since it has been deprecated. [#450](https://github.com/platanus/activeadmin_addons/pull/450)
1115
* Removes support for enumerize [#452](https://github.com/platanus/activeadmin_addons/pull/452)

activeadmin_addons.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Gem::Specification.new do |s|
1515
s.summary = "Set of addons to help with the activeadmin ui"
1616
s.description = "Set of addons to help with the activeadmin ui"
1717
s.license = "MIT"
18+
s.required_ruby_version = '>= 2.7.0'
1819

1920
s.files = Dir["{app,config,db,lib,vendor/assets}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
2021

0 commit comments

Comments
 (0)