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

[TASK] Require only supported Ruby versions #48

Merged
merged 1 commit into from
Sep 15, 2018
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
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