1
0
Fork 0
mirror of https://github.com/varvet/pundit.git synced 2022-11-09 12:30:11 -05:00

Stop building against Ruby 2.1 and 2.2

Ruby 2.1 is has been officially obsolete for over two years now, and no
longer receives security updates:

https://www.ruby-lang.org/en/news/2017/04/01/support-of-ruby-2-1-has-ended/

Similarly Ruby 2.2 has been obsolete for over a year:

https://www.ruby-lang.org/en/news/2018/06/20/support-of-ruby-2-2-has-ended/

One impact of supporting older versions is that we can't keep our
development dependencies up-to-date. This adds some friction for
contributors.

Changelog format follows https://keepachangelog.com/en/1.0.0/
This commit is contained in:
Duncan Stuart 2019-08-14 13:36:43 +02:00
parent e3c565b060
commit 7b9329821b
2 changed files with 6 additions and 2 deletions

View file

@ -6,8 +6,6 @@ matrix:
include: include:
- rvm: 2.5.3 # Pre-installed Ruby version - rvm: 2.5.3 # Pre-installed Ruby version
script: bundle exec rake rubocop # ONLY lint once, first script: bundle exec rake rubocop # ONLY lint once, first
- rvm: 2.1
- rvm: 2.2
- rvm: 2.3.5 - rvm: 2.3.5
- rvm: 2.4.6 - rvm: 2.4.6
- rvm: 2.5.5 - rvm: 2.5.5

View file

@ -1,5 +1,11 @@
# Pundit # Pundit
## Unreleased
### Removed
- Dropped support for Ruby end-of-life versions: 2.1 and 2.2.
## 2.1.0 (2019-08-14) ## 2.1.0 (2019-08-14)
### Fixed ### Fixed