diff --git a/CHANGELOG.md b/CHANGELOG.md index 9503dee0..b5688936 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,18 @@ -### (next) +### 0.20.1 (next) + +#### Features + +* [#382](https://github.com/ruby-grape/grape-swagger/pull/382): make schemes optional - [@wleeper](https://github.com/wleeper). +* [#381](https://github.com/ruby-grape/grape-swagger/pull/381): adding entity property description when property documentation desc option is present - [@elciok](https://github.com/elciok). #### Fixes -* [#382](https://github.com/ruby-grape/grape-swagger/pull/382): Make the schemes undefined by default to match Swagger 2.0 spec indicating that a blank schemes will use the scheme from the document - [@wleeper](https://github.com/wleeper). + +* [#383](https://github.com/ruby-grape/grape-swagger/pull/383): fixes grape to 0.14.0 - [@LeFnord](https://github.com/LeFnord). ### 0.20.0 / 2016-04-09 #### Features -[#381](https://github.com/ruby-grape/grape-swagger/pull/381) - -- adding entity property description when property documentation desc option is present [@elciok](https://github.com/elciok). - [#371](https://github.com/ruby-grape/grape-swagger/pull/371) - adds param type `body` handling diff --git a/grape-swagger.gemspec b/grape-swagger.gemspec index a65e85b2..57bf17aa 100644 --- a/grape-swagger.gemspec +++ b/grape-swagger.gemspec @@ -11,7 +11,7 @@ Gem::Specification.new do |s| s.summary = 'A simple way to add auto generated documentation to your Grape API that can be displayed with Swagger.' s.license = 'MIT' - s.add_runtime_dependency 'grape' + s.add_runtime_dependency 'grape', '0.14.0' s.add_runtime_dependency 'grape-entity' s.add_runtime_dependency 'awesome_print'