Skip to content

Commit

Permalink
[TASK] Drop support for Ruby < 2.3
Browse files Browse the repository at this point in the history
Support for Ruby 2.2 has ended on June 20th, 2018. So this gem
now requires Ruby >= 2.3.

https://www.ruby-lang.org/en/news/2018/06/20/support-of-ruby-2-2-has-ended/
  • Loading branch information
oliverklee committed Sep 15, 2018
1 parent e84453b commit 912d63f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 26 deletions.
15 changes: 0 additions & 15 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ language: ruby
cache: bundler

rvm:
- 2.0.0
- 2.1
- 2.2.10
- 2.3.7
- 2.4.4

Expand All @@ -26,15 +23,3 @@ script:
matrix:
fast_finish: true
exclude:
- gemfile: Gemfile
rvm: 2.0.0
- gemfile: Gemfile
rvm: 2.1
- gemfile: gemfiles/Gemfile.rails-5-0
rvm: 2.0.0
- gemfile: gemfiles/Gemfile.rails-5-0
rvm: 2.1
- gemfile: gemfiles/Gemfile.rails-5-1
rvm: 2.0.0
- gemfile: gemfiles/Gemfile.rails-5-1
rvm: 2.1
13 changes: 2 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,24 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).


## x.y.z (unreleased)

### Added


### Changed


### Deprecated


### Removed

- Drop support for Ruby < 2.3
([#48](https://github.com/braingourmets/currency_select/pull/48))

### Fixed
- Fix value call on Rails 5.2
([#47](https://github.com/braingourmets/currency_select/pull/47))

### Security



## 0.2.0

### Added
Expand All @@ -34,26 +29,22 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Add a code of conduct
([#25](https://github.com/braingourmets/currency_select/pull/25))


### Changed
- Mark all Ruby files as frozen_string_literal: true
([#31](https://github.com/braingourmets/currency_select/pull/31))


### Deprecated
- Support for Rails < 5.0.0 will be removed in version 2.0.0.
- Support for Rails < 4.2.0 will be removed in version 1.0.0.
- Support for Ruby < 2.2.2 will be removed in version 2.0.0.
- Support for Ruby < 2.0.0 will be removed in version 1.0.0.


### Removed
- Remove pre-Rails-4.0-specific code
([#38](https://github.com/braingourmets/currency_select/pull/38))
- Drop Jeweler
([#28](https://github.com/braingourmets/currency_select/pull/28))


### Fixed
- Add ActionView as explicit dependency
([#34](https://github.com/braingourmets/currency_select/pull/34))
Expand Down
2 changes: 2 additions & 0 deletions currency_select.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Gem::Specification.new do |s|
s.version = version
s.license = 'MIT'

s.required_ruby_version = '>= 2.3.0'

s.homepage = 'https://github.com/braingourmets/currency_select'
s.authors = ['Trond Arve Nordheim', 'Oliver Klee']
s.email = 'o.klee@braingourmets.com'
Expand Down

0 comments on commit 912d63f

Please sign in to comment.