Skip to content

Commit 8aa342c

Browse files
authored
Support Ruby 3.3 (#914)
* Adds ruby 3.3 to Actions. * Adds CHANGELOG entry.
1 parent 8e723c6 commit 8aa342c

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: ruby/setup-ruby@v1
2020
with:
21-
ruby-version: '3.2'
21+
ruby-version: '3.3'
2222
bundler-cache: true
2323
- name: Run rubocop
2424
run: bundle exec rubocop --parallel --format progress
@@ -30,7 +30,7 @@ jobs:
3030
GRAPE_VERSION: '1.7.1'
3131
strategy:
3232
matrix:
33-
ruby-version: ['3.1', '3.2', 'head']
33+
ruby-version: ['3.1', '3.2', '3.3', 'head']
3434
steps:
3535
- name: Check out branch
3636
uses: actions/checkout@v4
@@ -62,7 +62,7 @@ jobs:
6262
GRAPE_VERSION: '1.8.0'
6363
strategy:
6464
matrix:
65-
ruby-version: ['3.1', '3.2', 'head']
65+
ruby-version: ['3.1', '3.2', '3.3', 'head']
6666
steps:
6767
- name: Check out branch
6868
uses: actions/checkout@v4
@@ -94,7 +94,7 @@ jobs:
9494
GRAPE_VERSION: '2.0.0'
9595
strategy:
9696
matrix:
97-
ruby-version: ['3.1', '3.2', 'head']
97+
ruby-version: ['3.1', '3.2', '3.3', 'head']
9898
steps:
9999
- name: Check out branch
100100
uses: actions/checkout@v4
@@ -126,7 +126,7 @@ jobs:
126126
GRAPE_VERSION: 'HEAD'
127127
strategy:
128128
matrix:
129-
ruby-version: ['3.1', '3.2', 'head']
129+
ruby-version: ['3.1', '3.2', '3.3', 'head']
130130
steps:
131131
- name: Check out branch
132132
uses: actions/checkout@v4

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ AllCops:
66
- example/**/*
77
UseCache: true
88
NewCops: enable
9-
TargetRubyVersion: 3.2
9+
TargetRubyVersion: 3.3
1010
SuggestExtensions: false
1111

1212
# Layout stuff

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44

55
* Your contribution here.
66

7+
* [#914](https://github.com/ruby-grape/grape-swagger/pull/914): Support Ruby 3.3 - [@LeFnord](https://github.com/LeFnord)
8+
79
#### Fixes
810

911
* Your contribution here.
1012

1113

12-
### 2.0.0 (November7, 2023)
14+
### 2.0.0 (November 7, 2023)
1315

1416
#### Features
1517

0 commit comments

Comments
 (0)