Skip to content

Commit b69488b

Browse files
authored
Prepare release 1.1.0 (#787)
1 parent 8f978dc commit b69488b

File tree

5 files changed

+33
-7
lines changed

5 files changed

+33
-7
lines changed

.rubocop.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ AllCops:
66
- example/**/*
77
TargetRubyVersion: 2.7
88

9+
# Layout stuff
10+
#
911
Layout/EmptyLinesAroundArguments:
1012
Enabled: false
1113

@@ -17,12 +19,19 @@ Layout/LineLength:
1719
Exclude:
1820
- spec/**/*
1921

22+
Layout/SpaceAroundMethodCallOperator:
23+
Enabled: true
24+
25+
# Lint stuff
26+
#
2027
Lint/RaiseException:
2128
Enabled: true
2229

2330
Lint/StructNewOverride:
2431
Enabled: true
2532

33+
# Metrics stuff
34+
#
2635
Metrics/BlockLength:
2736
Exclude:
2837
- spec/**/*
@@ -34,11 +43,15 @@ Metrics/MethodLength:
3443
Exclude:
3544
- spec/**/*
3645

46+
# Naming stuff
47+
#
3748
Naming:
3849
Enabled: false
3950

40-
Style/RegexpLiteral:
41-
Enabled: false
51+
# Style stuff
52+
#
53+
Style/ExponentialNotation:
54+
Enabled: true
4255

4356
Style/HashEachMethods:
4457
Enabled: true
@@ -48,3 +61,6 @@ Style/HashTransformKeys:
4861

4962
Style/HashTransformValues:
5063
Enabled: true
64+
65+
Style/RegexpLiteral:
66+
Enabled: false

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,20 @@
33
#### Features
44

55
* Your contribution here.
6+
7+
#### Fixes
8+
9+
* Your contribution here.
10+
11+
12+
### 1.1.0 (April 20, 2020)
13+
14+
#### Features
15+
616
* [#785](https://github.com/ruby-grape/grape-swagger/pull/785): Add extensions for params - [@MaximeRDY](https://github.com/MaximeRDY).
717
* [#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).
8-
* [#786](https://github.com/ruby-grape/grape-swagger/pull/786): Use full entity name as a default - [@mrexox](https://github.com/mrexox)
18+
* [#786](https://github.com/ruby-grape/grape-swagger/pull/786): Use full entity name as a default - [@mrexox](https://github.com/mrexox).
919

10-
#### Fixes
1120

1221
### 1.0.0 (February 10, 2020)
1322

@@ -16,6 +25,7 @@
1625
* [#777](https://github.com/ruby-grape/grape-swagger/pull/777): Make usage of grape >= 1.3, rack >= 2.1 - [@LeFnord](https://github.com/LeFnord).
1726
* [#775](https://github.com/ruby-grape/grape-swagger/pull/775): Add in token_owner support to param hidden procs - [@urkle](https://github.com/urkle).
1827

28+
1929
### 0.34.2 (January 20, 2020)
2030

2131
#### Fixes

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ group :development, :test do
2626
gem 'rake'
2727
gem 'rdoc'
2828
gem 'rspec', '~> 3.9'
29-
gem 'rubocop', '~> 0.80', require: false
29+
gem 'rubocop', '~> 0.82', require: false
3030
end
3131

3232
group :test do

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ grape-swagger | swagger spec | grape | grape-entity | represen
5252
0.27.0 | 2.0 | >= 0.16.2 ... <= 1.1.0 | >= 0.5.0 | >= 2.4.1 |
5353
0.32.0 | 2.0 | >= 0.16.2 | >= 0.5.0 | >= 2.4.1 |
5454
0.34.0 | 2.0 | >= 0.16.2 ... < 1.3.0 | >= 0.5.0 | >= 2.4.1 |
55-
1.0.0 | 2.0 | >= 1.3.0 | >= 0.5.0 | >= 2.4.1 |
55+
>= 1.0.0 | 2.0 | >= 1.3.0 | >= 0.5.0 | >= 2.4.1 |
5656
5757

5858
## Swagger-Spec <a name="swagger-spec"></a>

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.0.0'
4+
VERSION = '1.1.0'
55
end

0 commit comments

Comments
 (0)