Skip to content

Commit 6267db4

Browse files
authored
Prepare release 1.0.0 (#375)
1 parent 4e12353 commit 6267db4

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,16 @@
77
#### Fixes
88

99
* Your contribution here.
10-
* [#371](https://github.com/ruby-grape/grape-entity/pull/371): Allow default exposed value to be `false` or any empty data - [@norydev](https://github.com/norydev).
1110

11+
12+
### ### 1.0.0 (2023-02-16)
13+
14+
#### Fixes
15+
16+
**Breaking change:**
1217
* [#352](https://github.com/ruby-grape/grape-entity/pull/369): Remove `FetchableObject` behavior. - [@danielvdao](https://github.com/danielvdao).
18+
* [#371](https://github.com/ruby-grape/grape-entity/pull/371): Allow default exposed value to be `false` or any empty data - [@norydev](https://github.com/norydev).
19+
1320

1421
### 0.10.2 (2022-07-29)
1522

grape-entity.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
77
s.name = 'grape-entity'
88
s.version = GrapeEntity::VERSION
99
s.platform = Gem::Platform::RUBY
10-
s.authors = ['Michael Bleigh']
11-
s.email = ['[email protected]']
10+
s.authors = ['LeFnord', 'Michael Bleigh']
11+
1212
s.homepage = 'https://github.com/ruby-grape/grape-entity'
1313
s.summary = 'A simple facade for managing the relationship between your model and API.'
1414
s.description = 'Extracted from Grape, A Ruby framework for rapid API development with great conventions.'

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 = '0.10.2'
4+
VERSION = '1.0.0'
55
end

0 commit comments

Comments
 (0)