Skip to content

Commit 1eb9fe6

Browse files
authored
Prepare release 1.5.0 (#864)
* Updates GH action matrix. * Improves Actions. * Prepapre release 1.5.0 - upgrades rubocop target to 3.1
1 parent 966b594 commit 1eb9fe6

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v3
1919
- uses: ruby/setup-ruby@v1
2020
with:
21-
ruby-version: '3.0'
21+
ruby-version: '3.1'
2222
bundler-cache: true
2323
- name: Run rubocop
2424
run: bundle exec rubocop --parallel --format progress

.rubocop.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ AllCops:
55
- vendor/**/*
66
- example/**/*
77
NewCops: enable
8-
TargetRubyVersion: 3.0
8+
TargetRubyVersion: 3.1
99
SuggestExtensions: false
1010

1111
# Layout stuff
@@ -101,6 +101,9 @@ Style/HashEachMethods:
101101
Style/HashLikeCase:
102102
Enabled: true
103103

104+
Style/HashSyntax:
105+
Enabled: false
106+
104107
Style/HashTransformKeys:
105108
Enabled: true
106109

CHANGELOG.md

+23-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,33 @@
1-
### 1.5.5
1+
### next
2+
3+
#### Features
4+
5+
* Your contribution here.
6+
7+
#### Fixes
8+
9+
* Your contribution here.
10+
11+
12+
### 1.5.0 (July 28, 2022)
213

314
#### Features
415

516
* [#862](https://github.com/ruby-grape/grape-swagger/pull/862): Allow using nicknames for body definitions - [@magni-](https://github.com/magni-)
617

718
#### Fixes
819

9-
* [#840](https://github.com/ruby-grape/grape-swagger/pull/847): Fix documentation of `route_param` type when used with nested endpoints - [@dmoss18](https://github.com/dmoss18)
20+
* [#860](https://github.com/ruby-grape/grape-swagger/pull/860) chore: Included githubactions in the dependabot config [@naveensrinivasan](https://github.com/naveensrinivasan)
21+
* [#843](https://github.com/ruby-grape/grape-swagger/pull/843) Syntax errors in README.md examples [@remvee](https://github.com/remvee)
22+
* [#844](https://github.com/ruby-grape/grape-swagger/pull/844) Fixes the regexp used for parsing routes [@senhalil](https://github.com/senhalil)
23+
* [#847](https://github.com/ruby-grape/grape-swagger/pull/847) Parse route_param type for nested endpoints [@dmoss18](https://github.com/dmoss18)
24+
* [#856](https://github.com/ruby-grape/grape-swagger/pull/856) Remove unused methods in GrapeSwagger::DocMethods::BuildModelDefinition [@takahashim](https://github.com/takahashim)
25+
* [#858](https://github.com/ruby-grape/grape-swagger/pull/858): Set permissions for GitHub actions [@naveensrinivasan](https://github.com/naveensrinivasan)
26+
* [#853](https://github.com/ruby-grape/grape-swagger/pull/853): Add webrick to support Ruby 3.x [@takahashim](https://github.com/takahashim)
27+
* [#852](https://github.com/ruby-grape/grape-swagger/pull/852): Fix example to work [@takahashim](https://github.com/takahashim)
28+
* [#846](https://github.com/ruby-grape/grape-swagger/pull/846): Refactor oapi fetch task [@Vachman](https://github.com/Vachman)
29+
* [#850](https://github.com/ruby-grape/grape-swagger/pull/850): Fix value of enum to be Array [@takahashim](https://github.com/takahashim)
30+
1031

1132
### 1.4.3 (January 5, 2022)
1233

lib/grape-swagger/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module GrapeSwagger
4-
VERSION = '1.4.2'
4+
VERSION = '1.5.0'
55
end

0 commit comments

Comments
 (0)