-
Notifications
You must be signed in to change notification settings - Fork 472
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
Update to work with Grape 2.0 #911
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,15 @@ | |
|
||
#### Fixes | ||
|
||
* [#903](https://github.com/ruby-grape/grape-swagger/pull/903): Accept `example` documentation parameter for arrays - [@VladMomotov](https://github.com/VladMomotov) | ||
* Your contribution here. | ||
|
||
### 1.6.2 | ||
|
||
#### Fixes | ||
|
||
* [#903](https://github.com/ruby-grape/grape-swagger/pull/903): Accept `example` documentation parameter for arrays - [@VladMomotov](https://github.com/VladMomotov) | ||
* [#911](https://github.com/ruby-grape/grape-swagger/pull/911): Fix compatibility with Grape 2.0.0 - [@mscrivo](https://github.com/mscrivo) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please move it to the feature section |
||
|
||
|
||
### 1.6.1 (May 21, 2023) | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ Gem::Specification.new do |s| | |
s.metadata['rubygems_mfa_required'] = 'true' | ||
|
||
s.required_ruby_version = '>= 2.7' | ||
s.add_runtime_dependency 'grape', '~> 1.3' | ||
s.add_runtime_dependency 'grape', ['>= 1.3.0', '< 3.0.0'] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ??? any reason why |
||
s.add_runtime_dependency 'rack-test', '~> 2' | ||
|
||
s.files = Dir['lib/**/*', '*.md', 'LICENSE.txt', 'grape-swagger.gemspec'] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module GrapeSwagger | ||
VERSION = '1.6.1' | ||
VERSION = '1.6.2' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please revert it |
||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any reason why this change?
it isn't related nor needed