Skip to content

Commit

Permalink
Prepare release 1.1.0 (#787)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeFnord committed Apr 20, 2020
1 parent 8f978dc commit b69488b
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 7 deletions.
20 changes: 18 additions & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ AllCops:
- example/**/*
TargetRubyVersion: 2.7

# Layout stuff
#
Layout/EmptyLinesAroundArguments:
Enabled: false

Expand All @@ -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/**/*
Expand All @@ -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
Expand All @@ -48,3 +61,6 @@ Style/HashTransformKeys:

Style/HashTransformValues:
Enabled: true

Style/RegexpLiteral:
Enabled: false
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,20 @@
#### Features

* Your contribution here.

#### 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)
* [#786](https://github.com/ruby-grape/grape-swagger/pull/786): Use full entity name as a default - [@mrexox](https://github.com/mrexox).

#### Fixes

### 1.0.0 (February 10, 2020)

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion lib/grape-swagger/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module GrapeSwagger
VERSION = '1.0.0'
VERSION = '1.1.0'
end

0 comments on commit b69488b

Please sign in to comment.