Skip to content

Commit 80b96c0

Browse files
authored
Prepare release 1.3.1 (#814)
- updates rubocop to 1.1
1 parent 08ae87f commit 80b96c0

14 files changed

+31
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,20 @@
33
#### Features
44

55
* Your contribution here.
6-
* [#813](https://github.com/ruby-grape/grape-swagger/pull/813): Handle multiple presents - [@AntoineGuestin](https://github.com/AntoineGuestin).
76

87
#### Fixes
98

109
* Your contribution here.
10+
11+
12+
### 1.3.1 (November 1, 2020)
13+
14+
#### Features
15+
16+
* [#813](https://github.com/ruby-grape/grape-swagger/pull/813): Handle multiple presents - [@AntoineGuestin](https://github.com/AntoineGuestin).
17+
18+
#### Fixes
19+
1120
* [#811](https://github.com/ruby-grape/grape-swagger/pull/811): Fixes #809: supports utf8 route names - [@LeFnord](https://github.com/LeFnord).
1221

1322

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ group :development, :test do
2727
gem 'rake'
2828
gem 'rdoc'
2929
gem 'rspec', '~> 3.9'
30-
gem 'rubocop', '~> 0.91', require: false
30+
gem 'rubocop', '~> 1.0', require: false
3131
end
3232

3333
group :test do

lib/grape-swagger/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module GrapeSwagger
4-
VERSION = '1.3.0'
4+
VERSION = '1.3.1'
55
end

spec/issues/537_enum_values_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class Spec < Grape::Entity
1515
desc 'create account',
1616
success: Spec
1717
get do
18+
{ message: 'hi' }
1819
end
1920
end
2021

spec/support/namespace_tags.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ class NamespaceApi < Grape::API
99
namespace :hudson do
1010
desc 'Document root'
1111
get '/' do
12+
{ message: 'hi' }
1213
end
1314
end
1415

spec/swagger_v2/api_swagger_v2_mounted_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ def app
8181
requires :id, type: Integer
8282
end
8383
delete '/dummy/:id' do
84+
{}
8485
end
8586

8687
namespace :other_thing do

spec/swagger_v2/api_swagger_v2_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ def app
8080
requires :id, type: Integer
8181
end
8282
delete '/dummy/:id' do
83+
{}
8384
end
8485

8586
namespace :other_thing do

spec/swagger_v2/boolean_params_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ def app
1111
requires :a_boolean, type: Grape::API::Boolean
1212
end
1313
post :splines do
14+
{ message: 'hi' }
1415
end
1516

1617
add_swagger_documentation

spec/swagger_v2/float_api_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ def app
1111
requires :a_float, type: Float
1212
end
1313
post :splines do
14+
{ message: 'hi' }
1415
end
1516

1617
add_swagger_documentation

spec/swagger_v2/namespace_tags_prefix_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class CascadingVersionApi < Grape::API
1717
namespace :hudson do
1818
desc 'Document root'
1919
get '/' do
20+
{ message: 'hi' }
2021
end
2122
end
2223

0 commit comments

Comments
 (0)