Skip to content

Commit

Permalink
Merge pull request #67 from ruby-grape/scrivo/build-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mscrivo authored Feb 2, 2024
2 parents 7c8a126 + 03a8a98 commit 29b9619
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: RuboCop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
Expand All @@ -24,16 +24,16 @@ jobs:

test:
env:
GRAPE_ENTITY: 0.8.0
GRAPE_ENTITY: 1.0.0

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: ['3.0', '3.1', '3.2']
ruby-version: ['3.0', '3.1', '3.2', '3.3']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#### Fixes

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

### 0.5.3 (2024/02/02)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ end
gem 'grape-swagger', git: 'https://github.com/ruby-grape/grape-swagger.git'

group :test do
gem 'grape-entity', ENV.fetch('GRAPE_ENTITY', '0.6.1')
gem 'grape-entity', ENV.fetch('GRAPE_ENTITY', '1.0.0')
gem 'ruby-grape-danger', '~> 0.2.1', require: false
gem 'simplecov', require: false
end
6 changes: 3 additions & 3 deletions grape-swagger-entity.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Gem::Specification.new do |s|
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ['lib']

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

0 comments on commit 29b9619

Please sign in to comment.