Skip to content

Commit 7237ef3

Browse files
authored
prepare release 0.33.0 (#749)
- aligns ruby versions for travis, rubocop and the gem itself
1 parent 4573a82 commit 7237ef3

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ AllCops:
44
Exclude:
55
- vendor/**/*
66
- example/**/*
7-
TargetRubyVersion: 2.4
7+
TargetRubyVersion: 2.6
88

99
Layout/EmptyLinesAroundArguments:
1010
Enabled: false

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
- MODEL_PARSER=grape-swagger-entity
1515
- MODEL_PARSER=grape-swagger-representable
1616
- GRAPE_VERSION=1.0.3
17-
- GRAPE_VERSION=1.2.2
17+
- GRAPE_VERSION=1.2.4
1818
- GRAPE_VERSION=HEAD
1919

2020
matrix:

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
#### Fixes
88

99
* Your contribution here.
10+
11+
### 0.33.0 (June 21, 2019)
12+
13+
#### Fixes
14+
1015
* [#747](https://github.com/ruby-grape/grape-swagger/pull/747): Allow multiple different success responses - [@charanftp3](https://github.com/charanpanchagnula).
1116
* [#746](https://github.com/ruby-grape/grape-swagger/pull/746): Fix path with optional format - [@fnordfish](https://github.com/fnordfish).
1217
* [#743](https://github.com/ruby-grape/grape-swagger/pull/743): CI: use 2.4.6, 2.5.5 - [@olleolleolle](https://github.com/olleolleolle).

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.8'
29-
gem 'rubocop', '~> 0.65', require: false
29+
gem 'rubocop', '~> 0.71', require: false
3030
end
3131

3232
group :test do

grape-swagger.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
1313
s.summary = 'Add auto generated documentation to your Grape API that can be displayed with Swagger.'
1414
s.license = 'MIT'
1515

16-
s.required_ruby_version = '>= 2.3'
16+
s.required_ruby_version = '>= 2.4'
1717
s.add_runtime_dependency 'grape', '>= 0.16.2'
1818

1919
s.files = `git ls-files`.split("\n")

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 = '0.32.1'
4+
VERSION = '0.33.0'
55
end

0 commit comments

Comments
 (0)