Skip to content

Commit

Permalink
Prepare release 1.0.1 (#383)
Browse files Browse the repository at this point in the history
* Aligns ruby version with other gems.

- min version is now: 3.0
- add 3.3 to CI

* Prepare release 1.0.1
  • Loading branch information
LeFnord authored Apr 10, 2024
1 parent f9e9e43 commit e71e3cd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 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.0'
bundler-cache: true
- name: Run rubocop
run: bundle exec rubocop --parallel --format progress
Expand All @@ -28,7 +28,7 @@ jobs:
needs: ['rubocop']
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2', 'head']
ruby-version: ['3.0', '3.1', '3.2', '3.3', 'head']
steps:
- name: Check out branch
uses: actions/checkout@v4
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,16 @@

#### Fixes

* [#381](https://github.com/ruby-grape/grape-entity/pull/381): Fix `expose_nil: false` when using a block - [@magni-](https://github.com/magni-).
* Your contribution here.


### ### 1.0.1 (2024-04-10)

#### Fixes

* [#381](https://github.com/ruby-grape/grape-entity/pull/381): Fix `expose_nil: false` when using a block - [@magni-](https://github.com/magni-).


### ### 1.0.0 (2023-02-16)

#### Fixes
Expand Down
2 changes: 1 addition & 1 deletion grape-entity.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.description = 'Extracted from Grape, A Ruby framework for rapid API development with great conventions.'
s.license = 'MIT'

s.required_ruby_version = '>= 2.7'
s.required_ruby_version = '>= 3.0'

s.add_runtime_dependency 'activesupport', '>= 3.0.0'
# FIXME: remove dependecy
Expand Down
2 changes: 1 addition & 1 deletion lib/grape_entity/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module GrapeEntity
VERSION = '1.0.0'
VERSION = '1.0.1'
end

0 comments on commit e71e3cd

Please sign in to comment.