Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 0.4.0 #49

Merged
merged 1 commit into from
May 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,21 @@
#### Features

* Your contribution here.

#### Features

* Your contribution here.

### 0.4.0 (May 30, 2020)

#### Features

* [#49](https://github.com/ruby-grape/grape-swagger-entity/pull/49): Bumped minimal required version of grape-swagger to 1.0.0 - [@Bugagazavr](https://github.com/Bugagazavr).
* [#48](https://github.com/ruby-grape/grape-swagger-entity/pull/48): Add support for extensions - [@MaximeRDY](https://github.com/MaximeRDY).

#### Fixes

[#46](https://github.com/ruby-grape/grape-swagger-entity/pull/46): Fixed issue where a boolean example value of false would not display in swagger file - [@drewnichols](https://github.com/drewnichols).
* [#46](https://github.com/ruby-grape/grape-swagger-entity/pull/46): Fixed issue where a boolean example value of false would not display in swagger file - [@drewnichols](https://github.com/drewnichols).

### 0.3.4 (January 9, 2020)

Expand Down
2 changes: 1 addition & 1 deletion grape-swagger-entity.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 2.2.6'
s.add_runtime_dependency 'grape-entity', '>= 0.5.0'
s.add_runtime_dependency 'grape-swagger', '>= 0.31.0'
s.add_runtime_dependency 'grape-swagger', '>= 1.0.0'
end
2 changes: 1 addition & 1 deletion lib/grape-swagger/entity/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module GrapeSwagger
module Entity
VERSION = '0.3.4'.freeze
VERSION = '0.4.0'.freeze
end
end