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

Drop ruby 2.4 support #177

Merged
merged 1 commit into from
Apr 18, 2020
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
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ AllCops:
DisplayCopNames: true
DisplayStyleGuide: true

TargetRubyVersion: 2.4
TargetRubyVersion: 2.5

Metrics:
Enabled: false
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ before_install:
- gem update --system 3.0.6
- gem install bundler:2.0.2
rvm:
- 2.4.5
- 2.5.5
- 2.6.2
- jruby-9.2.6.0
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Master (unreleased)

* Drop ruby 2.3 support. [#152][] by [@deivid-rodriguez][]
* Drop ruby 2.4 support. [#177][] by [@deivid-rodriguez][]

## 1.2.1 [☰](https://github.com/activeadmin/arbre/compare/v1.2.0...v1.2.1)

Expand Down Expand Up @@ -86,6 +87,7 @@ Initial release and extraction from Active Admin
[#110]: https://github.com/activeadmin/arbre/pull/110
[#121]: https://github.com/activeadmin/arbre/pull/121
[#152]: https://github.com/activeadmin/arbre/pull/152
[#177]: https://github.com/activeadmin/arbre/pull/177

[@aramvisser]: https://github.com/aramvisser
[@LTe]: https://github.com/LTe
Expand Down
2 changes: 1 addition & 1 deletion arbre.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |s|

s.require_paths = ["lib"]

s.required_ruby_version = '>= 2.4'
s.required_ruby_version = '>= 2.5'

s.add_dependency("activesupport", ">= 3.0.0", "< 6.1")
end