Skip to content

Commit 29b9619

Browse files
authored
Merge pull request #67 from ruby-grape/scrivo/build-updates
2 parents 7c8a126 + 03a8a98 commit 29b9619

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: RuboCop
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Set up Ruby
1616
uses: ruby/setup-ruby@v1
@@ -24,16 +24,16 @@ jobs:
2424

2525
test:
2626
env:
27-
GRAPE_ENTITY: 0.8.0
27+
GRAPE_ENTITY: 1.0.0
2828

2929
runs-on: ubuntu-latest
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
ruby-version: ['3.0', '3.1', '3.2']
33+
ruby-version: ['3.0', '3.1', '3.2', '3.3']
3434

3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
- name: Set up Ruby
3838
uses: ruby/setup-ruby@v1
3939
with:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
#### Fixes
88

9+
* [#67](https://github.com/ruby-grape/grape-swagger-entity/pull/67): Various build updates - [@mscrivo](https://github.com/mscrivo).
910
* Your contribution here.
1011

1112
### 0.5.3 (2024/02/02)

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ end
2121
gem 'grape-swagger', git: 'https://github.com/ruby-grape/grape-swagger.git'
2222

2323
group :test do
24-
gem 'grape-entity', ENV.fetch('GRAPE_ENTITY', '0.6.1')
24+
gem 'grape-entity', ENV.fetch('GRAPE_ENTITY', '1.0.0')
2525
gem 'ruby-grape-danger', '~> 0.2.1', require: false
2626
gem 'simplecov', require: false
2727
end

grape-swagger-entity.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Gem::Specification.new do |s|
1919
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
2020
s.require_paths = ['lib']
2121

22-
s.required_ruby_version = '>= 2.4'
23-
s.add_runtime_dependency 'grape-entity', '>= 0.6.0'
24-
s.add_runtime_dependency 'grape-swagger', '>= 1.2.0'
22+
s.required_ruby_version = '>= 3.0'
23+
s.add_runtime_dependency 'grape-entity', '~> 1'
24+
s.add_runtime_dependency 'grape-swagger', '~> 2'
2525
s.metadata['rubygems_mfa_required'] = 'true'
2626
end

0 commit comments

Comments
 (0)