Skip to content

Commit e71e3cd

Browse files
authoredApr 10, 2024··
Prepare release 1.0.1 (#383)
* Aligns ruby version with other gems. - min version is now: 3.0 - add 3.3 to CI * Prepare release 1.0.1
1 parent f9e9e43 commit e71e3cd

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed
 

‎.github/workflows/ci.yml

+2-2
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.0'
2222
bundler-cache: true
2323
- name: Run rubocop
2424
run: bundle exec rubocop --parallel --format progress
@@ -28,7 +28,7 @@ jobs:
2828
needs: ['rubocop']
2929
strategy:
3030
matrix:
31-
ruby-version: ['3.0', '3.1', '3.2', 'head']
31+
ruby-version: ['3.0', '3.1', '3.2', '3.3', 'head']
3232
steps:
3333
- name: Check out branch
3434
uses: actions/checkout@v4

‎CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,16 @@
66

77
#### Fixes
88

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

1211

12+
### ### 1.0.1 (2024-04-10)
13+
14+
#### Fixes
15+
16+
* [#381](https://github.com/ruby-grape/grape-entity/pull/381): Fix `expose_nil: false` when using a block - [@magni-](https://github.com/magni-).
17+
18+
1319
### ### 1.0.0 (2023-02-16)
1420

1521
#### Fixes

‎grape-entity.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
1414
s.description = 'Extracted from Grape, A Ruby framework for rapid API development with great conventions.'
1515
s.license = 'MIT'
1616

17-
s.required_ruby_version = '>= 2.7'
17+
s.required_ruby_version = '>= 3.0'
1818

1919
s.add_runtime_dependency 'activesupport', '>= 3.0.0'
2020
# FIXME: remove dependecy

‎lib/grape_entity/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module GrapeEntity
4-
VERSION = '1.0.0'
4+
VERSION = '1.0.1'
55
end

0 commit comments

Comments
 (0)
Please sign in to comment.