prepare 0.32.1 release (#732)

- updates dependencies
- removes coveralls dependency, have to investigate it ...
This commit is contained in:
peter scholz 2018-12-07 22:07:00 +01:00 committed by GitHub
parent 5e2329e339
commit 6e851ace83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 9 deletions

View File

@ -7,19 +7,19 @@ before_install:
- gem install bundler
after_success:
- coveralls
# - coveralls
- bundle exec danger
rvm:
- 2.4.5
- 2.5.3
- 2.6.0-preview2
- 2.6.0-rc1
env:
- MODEL_PARSER=grape-swagger-entity
- MODEL_PARSER=grape-swagger-representable
- GRAPE_VERSION=0.19.2
- GRAPE_VERSION=1.0.3
- GRAPE_VERSION=1.2.0
- GRAPE_VERSION=1.2.2
- GRAPE_VERSION=HEAD
matrix:

View File

@ -7,6 +7,11 @@
#### Fixes
* Your contribution here.
### 0.32.1 (December 7, 2018)
#### Fixes
* [#731](https://github.com/ruby-grape/grape-swagger/pull/731): Skip empty parameters and tags arrays - [@fotos](https://github.com/fotos).
* [#729](https://github.com/ruby-grape/grape-swagger/pull/729): Allow empty security array for endpoints - [@fotos](https://github.com/fotos).

View File

@ -30,7 +30,7 @@ group :development, :test do
if RUBY_VERSION == '2.6.0'
gem 'rubocop', git: 'https://github.com/rubocop-hq/rubocop.git', require: false
else
gem 'rubocop', '~> 0.60', require: false
gem 'rubocop', '~> 0.61', require: false
end
end

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module GrapeSwagger
VERSION = '0.32.0'
VERSION = '0.32.1'
end

View File

@ -2,14 +2,14 @@
if RUBY_ENGINE == 'ruby'
require 'simplecov'
require 'coveralls'
# require 'coveralls'
SimpleCov.formatter = Coveralls::SimpleCov::Formatter
# SimpleCov.formatter = Coveralls::SimpleCov::Formatter
SimpleCov.start do
add_filter 'spec/'
add_filter 'example/'
# add_filter 'example/'
end
Coveralls.wear!
# Coveralls.wear!
end
$LOAD_PATH.unshift File.expand_path('../lib', __dir__)