Prepare release 1.1.0 (#787)
This commit is contained in:
parent
8f978dc8d2
commit
b69488b56e
20
.rubocop.yml
20
.rubocop.yml
|
@ -6,6 +6,8 @@ AllCops:
|
|||
- example/**/*
|
||||
TargetRubyVersion: 2.7
|
||||
|
||||
# Layout stuff
|
||||
#
|
||||
Layout/EmptyLinesAroundArguments:
|
||||
Enabled: false
|
||||
|
||||
|
@ -17,12 +19,19 @@ Layout/LineLength:
|
|||
Exclude:
|
||||
- spec/**/*
|
||||
|
||||
Layout/SpaceAroundMethodCallOperator:
|
||||
Enabled: true
|
||||
|
||||
# Lint stuff
|
||||
#
|
||||
Lint/RaiseException:
|
||||
Enabled: true
|
||||
|
||||
Lint/StructNewOverride:
|
||||
Enabled: true
|
||||
|
||||
# Metrics stuff
|
||||
#
|
||||
Metrics/BlockLength:
|
||||
Exclude:
|
||||
- spec/**/*
|
||||
|
@ -34,11 +43,15 @@ Metrics/MethodLength:
|
|||
Exclude:
|
||||
- spec/**/*
|
||||
|
||||
# Naming stuff
|
||||
#
|
||||
Naming:
|
||||
Enabled: false
|
||||
|
||||
Style/RegexpLiteral:
|
||||
Enabled: false
|
||||
# Style stuff
|
||||
#
|
||||
Style/ExponentialNotation:
|
||||
Enabled: true
|
||||
|
||||
Style/HashEachMethods:
|
||||
Enabled: true
|
||||
|
@ -48,3 +61,6 @@ Style/HashTransformKeys:
|
|||
|
||||
Style/HashTransformValues:
|
||||
Enabled: true
|
||||
|
||||
Style/RegexpLiteral:
|
||||
Enabled: false
|
||||
|
|
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -3,12 +3,21 @@
|
|||
#### Features
|
||||
|
||||
* Your contribution here.
|
||||
* [#785](https://github.com/ruby-grape/grape-swagger/pull/785): Add extensions for params - [@MaximeRDY](https://github.com/MaximeRDY).
|
||||
* [#782](https://github.com/ruby-grape/grape-swagger/pull/782): Allow passing class name as string for rake task initializer - [@misdoro](https://github.com/misdoro).
|
||||
* [#786](https://github.com/ruby-grape/grape-swagger/pull/786): Use full entity name as a default - [@mrexox](https://github.com/mrexox)
|
||||
|
||||
#### Fixes
|
||||
|
||||
* Your contribution here.
|
||||
|
||||
|
||||
### 1.1.0 (April 20, 2020)
|
||||
|
||||
#### Features
|
||||
|
||||
* [#785](https://github.com/ruby-grape/grape-swagger/pull/785): Add extensions for params - [@MaximeRDY](https://github.com/MaximeRDY).
|
||||
* [#782](https://github.com/ruby-grape/grape-swagger/pull/782): Allow passing class name as string for rake task initializer - [@misdoro](https://github.com/misdoro).
|
||||
* [#786](https://github.com/ruby-grape/grape-swagger/pull/786): Use full entity name as a default - [@mrexox](https://github.com/mrexox).
|
||||
|
||||
|
||||
### 1.0.0 (February 10, 2020)
|
||||
|
||||
#### Features
|
||||
|
@ -16,6 +25,7 @@
|
|||
* [#777](https://github.com/ruby-grape/grape-swagger/pull/777): Make usage of grape >= 1.3, rack >= 2.1 - [@LeFnord](https://github.com/LeFnord).
|
||||
* [#775](https://github.com/ruby-grape/grape-swagger/pull/775): Add in token_owner support to param hidden procs - [@urkle](https://github.com/urkle).
|
||||
|
||||
|
||||
### 0.34.2 (January 20, 2020)
|
||||
|
||||
#### Fixes
|
||||
|
|
2
Gemfile
2
Gemfile
|
@ -26,7 +26,7 @@ group :development, :test do
|
|||
gem 'rake'
|
||||
gem 'rdoc'
|
||||
gem 'rspec', '~> 3.9'
|
||||
gem 'rubocop', '~> 0.80', require: false
|
||||
gem 'rubocop', '~> 0.82', require: false
|
||||
end
|
||||
|
||||
group :test do
|
||||
|
|
|
@ -52,7 +52,7 @@ grape-swagger | swagger spec | grape | grape-entity | represen
|
|||
0.27.0 | 2.0 | >= 0.16.2 ... <= 1.1.0 | >= 0.5.0 | >= 2.4.1 |
|
||||
0.32.0 | 2.0 | >= 0.16.2 | >= 0.5.0 | >= 2.4.1 |
|
||||
0.34.0 | 2.0 | >= 0.16.2 ... < 1.3.0 | >= 0.5.0 | >= 2.4.1 |
|
||||
1.0.0 | 2.0 | >= 1.3.0 | >= 0.5.0 | >= 2.4.1 |
|
||||
>= 1.0.0 | 2.0 | >= 1.3.0 | >= 0.5.0 | >= 2.4.1 |
|
||||
|
||||
|
||||
## Swagger-Spec <a name="swagger-spec"></a>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module GrapeSwagger
|
||||
VERSION = '1.0.0'
|
||||
VERSION = '1.1.0'
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue