Skip to content

Commit

Permalink
[FEATURE] Add Rails 6.1 to the CI builds (#114)
Browse files Browse the repository at this point in the history
Also update the patch level versions for Rails 5.2 and 6.0.
  • Loading branch information
oliverklee authored Dec 18, 2020
1 parent c993786 commit fd30283
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@ gemfile:
- Gemfile
- gemfiles/Gemfile.rails-5-2
- gemfiles/Gemfile.rails-6.0
- gemfiles/Gemfile.rails-6.1

install:
- bundle install

script:
- bundle exec rake --trace test
- bundle exec rubocop Gemfile \
gemfiles/Gemfile.rails-5-2 \ gemfiles/Gemfile.rails-6.0 \
lib/ test/ Rakefile
gemfiles/Gemfile.rails-5-2 gemfiles/Gemfile.rails-6.0 \
gemfiles/Gemfile.rails-6.1 lib/ test/ Rakefile

jobs:
fast_finish: true
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ about why a change log is important.
## x.y.z

### Added
- Add support for Rails 6.1
([#113](https://github.com/lwe/page_title_helper/pull/113),
[#114](https://github.com/lwe/page_title_helper/pull/114))
- Officially support Ruby 2.7
([#103](https://github.com/lwe/page_title_helper/pull/103))

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-5-2
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

source 'https://rubygems.org'

gem 'rails', '~> 5.2.4.1'
gem 'rails', '~> 5.2.4.4'

gemspec path: '../'
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-6.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

source 'https://rubygems.org'

gem 'rails', '~> 6.0.2.1'
gem 'rails', '~> 6.0.3.4'

gemspec path: '../'
7 changes: 7 additions & 0 deletions gemfiles/Gemfile.rails-6.1
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gem 'rails', '~> 6.1.0'

gemspec path: '../'

0 comments on commit fd30283

Please sign in to comment.