Skip to content

Commit 7198a3a

Browse files
authored
Prepare release 2.0.2 (#920)
- removes unused dependencies: coverall and danger
1 parent de6f094 commit 7198a3a

File tree

6 files changed

+10
-16
lines changed

6 files changed

+10
-16
lines changed

.coveralls.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,16 @@
66

77
#### Fixes
88

9+
* Your contribution here.
10+
11+
12+
### 2.0.2 (Februar 2, 2024)
13+
14+
#### Fixes
15+
916
* [#918](https://github.com/ruby-grape/grape-swagger/pull/918): Fix params extension does not work when param_type is body - [@numbata](https://github.com/numbata)
1017

18+
1119
### 2.0.1 (Januar 2, 2024)
1220

1321
#### Features
@@ -18,6 +26,7 @@
1826

1927
* [#916](https://github.com/ruby-grape/grape-swagger/pull/916): Restore Ruby 3.0 support - [@godfat](https://github.com/godfat)
2028

29+
2130
### 2.0.0 (November 7, 2023)
2231

2332
#### Features

Dangerfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

Gemfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,5 @@ group :development, :test do
3333
end
3434

3535
group :test do
36-
gem 'coveralls_reborn', require: false
37-
38-
gem 'ruby-grape-danger', '~> 0.2.0', require: false
3936
gem 'simplecov', require: false
4037
end

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 = '2.0.1'
4+
VERSION = '2.0.2'
55
end

spec/spec_helper.rb

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
# frozen_string_literal: true
22

3-
if RUBY_ENGINE == 'ruby'
4-
require 'simplecov'
5-
require 'coveralls'
6-
7-
SimpleCov.formatter = Coveralls::SimpleCov::Formatter
8-
Coveralls.wear!
9-
end
10-
113
$LOAD_PATH.unshift File.expand_path('../lib', __dir__)
124

135
MODEL_PARSER = ENV.key?('MODEL_PARSER') ? ENV['MODEL_PARSER'].to_s.downcase.sub('grape-swagger-', '') : 'mock'

0 commit comments

Comments
 (0)