Skip to content

Commit

Permalink
Support Ruby 3.3 (#914)
Browse files Browse the repository at this point in the history
* Adds ruby 3.3 to Actions.

* Adds CHANGELOG entry.
  • Loading branch information
LeFnord authored Dec 29, 2023
1 parent 8e723c6 commit 8aa342c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
ruby-version: '3.3'
bundler-cache: true
- name: Run rubocop
run: bundle exec rubocop --parallel --format progress
Expand All @@ -30,7 +30,7 @@ jobs:
GRAPE_VERSION: '1.7.1'
strategy:
matrix:
ruby-version: ['3.1', '3.2', 'head']
ruby-version: ['3.1', '3.2', '3.3', 'head']
steps:
- name: Check out branch
uses: actions/checkout@v4
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
GRAPE_VERSION: '1.8.0'
strategy:
matrix:
ruby-version: ['3.1', '3.2', 'head']
ruby-version: ['3.1', '3.2', '3.3', 'head']
steps:
- name: Check out branch
uses: actions/checkout@v4
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
GRAPE_VERSION: '2.0.0'
strategy:
matrix:
ruby-version: ['3.1', '3.2', 'head']
ruby-version: ['3.1', '3.2', '3.3', 'head']
steps:
- name: Check out branch
uses: actions/checkout@v4
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
GRAPE_VERSION: 'HEAD'
strategy:
matrix:
ruby-version: ['3.1', '3.2', 'head']
ruby-version: ['3.1', '3.2', '3.3', 'head']
steps:
- name: Check out branch
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ AllCops:
- example/**/*
UseCache: true
NewCops: enable
TargetRubyVersion: 3.2
TargetRubyVersion: 3.3
SuggestExtensions: false

# Layout stuff
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@

* Your contribution here.

* [#914](https://github.com/ruby-grape/grape-swagger/pull/914): Support Ruby 3.3 - [@LeFnord](https://github.com/LeFnord)

#### Fixes

* Your contribution here.


### 2.0.0 (November7, 2023)
### 2.0.0 (November 7, 2023)

#### Features

Expand Down

0 comments on commit 8aa342c

Please sign in to comment.