Skip to content

Commit 6e851ac

Browse files
authored
prepare 0.32.1 release (#732)
- updates dependencies - removes coveralls dependency, have to investigate it ...
1 parent 5e2329e commit 6e851ac

5 files changed

Lines changed: 14 additions & 9 deletions

File tree

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ before_install:
77
- gem install bundler
88

99
after_success:
10-
- coveralls
10+
# - coveralls
1111
- bundle exec danger
1212

1313
rvm:
1414
- 2.4.5
1515
- 2.5.3
16-
- 2.6.0-preview2
16+
- 2.6.0-rc1
1717
env:
1818
- MODEL_PARSER=grape-swagger-entity
1919
- MODEL_PARSER=grape-swagger-representable
2020
- GRAPE_VERSION=0.19.2
2121
- GRAPE_VERSION=1.0.3
22-
- GRAPE_VERSION=1.2.0
22+
- GRAPE_VERSION=1.2.2
2323
- GRAPE_VERSION=HEAD
2424

2525
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.32.1 (December 7, 2018)
12+
13+
#### Fixes
14+
1015
* [#731](https://github.com/ruby-grape/grape-swagger/pull/731): Skip empty parameters and tags arrays - [@fotos](https://github.com/fotos).
1116
* [#729](https://github.com/ruby-grape/grape-swagger/pull/729): Allow empty security array for endpoints - [@fotos](https://github.com/fotos).
1217

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ group :development, :test do
3030
if RUBY_VERSION == '2.6.0'
3131
gem 'rubocop', git: 'https://github.com/rubocop-hq/rubocop.git', require: false
3232
else
33-
gem 'rubocop', '~> 0.60', require: false
33+
gem 'rubocop', '~> 0.61', require: false
3434
end
3535
end
3636

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

spec/spec_helper.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
if RUBY_ENGINE == 'ruby'
44
require 'simplecov'
5-
require 'coveralls'
5+
# require 'coveralls'
66

7-
SimpleCov.formatter = Coveralls::SimpleCov::Formatter
7+
# SimpleCov.formatter = Coveralls::SimpleCov::Formatter
88
SimpleCov.start do
99
add_filter 'spec/'
10-
add_filter 'example/'
10+
# add_filter 'example/'
1111
end
12-
Coveralls.wear!
12+
# Coveralls.wear!
1313
end
1414

1515
$LOAD_PATH.unshift File.expand_path('../lib', __dir__)

0 commit comments

Comments
 (0)