Skip to content

Commit 9a2913f

Browse files
authored
Merge pull request #19 from wantedly/qnighy/bump-ruby-rails
Bump Ruby and Rails
2 parents 6246b23 + 9294291 commit 9a2913f

File tree

7 files changed

+17
-12
lines changed

7 files changed

+17
-12
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
ruby: ["2.5", "2.6", "2.7", "3.0"]
7+
ruby: ["3.0", "3.1", "3.2"]
88
gemfile: [Gemfile]
99
include:
10-
- ruby: "2.7"
11-
gemfile: "gemfiles/rails-6.0.gemfile"
12-
- ruby: "2.6"
13-
gemfile: "gemfiles/rails-5.2.gemfile"
10+
- ruby: "3.2"
11+
gemfile: "gemfiles/rails-7.0.gemfile"
12+
- ruby: "3.2"
13+
gemfile: "gemfiles/rails-6.1.gemfile"
1414

1515
env:
1616
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
1717

1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
- uses: ruby/setup-ruby@v1
2222
with:
2323
ruby-version: ${{ matrix.ruby }}
2424
bundler-cache: true
2525
- run: bundle exec rake
2626
- name: Send coverage
27-
uses: paambaati/codeclimate-action@v2.7.5
27+
uses: paambaati/codeclimate-action@v5
2828
env:
2929
CC_TEST_REPORTER_ID: 921d046db793707b7d0c0d1305970a137fdf98fbc6ceeb6c355c44757040244f

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.2
1+
3.2.2

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
## Not released yet
22

3+
## 0.6.1
4+
35
- Reflect ownership transfer https://github.com/wantedly/open_api_annotator/pull/18
6+
- Bump Ruby and Rails https://github.com/wantedly/open_api_annotator/pull/19
7+
- Supported Rubies: 3.0, 3.1, 3.2
8+
- Supported Rails: 6.1, 7.0, 7.1
49

510
## 0.6.0
611
- Support Ruby 3.0 and Rails 6.1

gemfiles/rails-5.2.gemfile renamed to gemfiles/rails-6.1.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
55
# Specify your gem's dependencies in open_api_annotator.gemspec
66
gemspec path: '..'
77

8-
gem 'railties', '~> 5.2.0'
8+
gem 'railties', '~> 6.1.0'

gemfiles/rails-6.0.gemfile renamed to gemfiles/rails-7.0.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
55
# Specify your gem's dependencies in open_api_annotator.gemspec
66
gemspec path: '..'
77

8-
gem 'railties', '~> 6.0.0'
8+
gem 'railties', '~> 7.0.0'

lib/open_api_annotator/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module OpenApiAnnotator
2-
VERSION = "0.6.0"
2+
VERSION = "0.6.1"
33
end

open_api_annotator.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
2424
spec.add_dependency "open_api", ">= 0.5.0"
2525
spec.add_dependency "active_model_serializers", "~> 0.10.0"
2626

27-
rails_versions = ['>= 5.0', '< 6.2']
27+
rails_versions = ['>= 5.0', '< 7.2']
2828
spec.add_dependency "actionpack", rails_versions
2929
spec.add_dependency "railties", rails_versions
3030

0 commit comments

Comments
 (0)