Skip to content

Commit 159aff8

Browse files
committed
Preparing for release, 2.1.3.
1 parent 4a1983e commit 159aff8

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### Next
1+
### 2.1.3 (2025-11-21)
22

33
#### Features
44

@@ -7,14 +7,12 @@
77
* [#953](https://github.com/ruby-grape/grape-swagger/pull/953): Added `super_diff` - [@numbata](https://github.com/numbata).
88
* [#951](https://github.com/ruby-grape/grape-swagger/pull/951): Use `x-example` for non-body parameters - [@olivier-thatch](https://github.com/olivier-thatch).
99
* [#963](https://github.com/ruby-grape/grape-swagger/pull/963): Allow empty model definitions for swagger 2.0 - [@numbata](https://github.com/numbata).
10-
* Your contribution here.
1110

1211
#### Fixes
1312

1413
* [#966](https://github.com/ruby-grape/grape-swagger/pull/966): Grape 3.0 compatibility - [@numbata](https://github.com/numbata).
1514
* [#954](https://github.com/ruby-grape/grape-swagger/pull/954): Ruby 3.5 compatibility: add cgi gem, drop runtime `rack‑test` - [@numbata](https://github.com/numbata).
1615
* [#948](https://github.com/ruby-grape/grape-swagger/pull/948): Grape 2.3.0 and Ruby 3.5 compatibility - [@numbata](https://github.com/numbata).
17-
* Your contribution here.
1816

1917
### 2.1.2 (2025-01-07)
2018

RELEASING.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Check that the last build succeeded in [Travis CI](https://travis-ci.org/ruby-gr
1616
Change "Next" in [CHANGELOG.md](CHANGELOG.md) to the current date.
1717

1818
```
19-
### 0.7.2 (February 6, 2014)
19+
### 2.2.0 (2025-11-21)
2020
```
2121

2222
Remove the lines with "Your contribution here.", since there will be no more contributions to this release.
@@ -25,7 +25,7 @@ Commit your changes.
2525

2626
```
2727
git add CHANGELOG.md lib/grape-swagger/version.rb
28-
git commit -m "Preparing for release, 0.7.2."
28+
git commit -m "Preparing for release, 2.2.0."
2929
git push origin master
3030
```
3131

@@ -34,10 +34,10 @@ Release.
3434
```
3535
$ rake release
3636
37-
grape-swagger 0.7.2 built to pkg/grape-swagger-0.7.2.gem.
38-
Tagged v0.7.2.
37+
grape-swagger 2.2.0 built to pkg/grape-swagger-2.2.0.gem.
38+
Tagged v2.2.0.
3939
Pushed git commits and tags.
40-
Pushed grape-swagger 0.7.2 to rubygems.org.
40+
Pushed grape-swagger 2.2.0 to rubygems.org.
4141
```
4242

4343
### Prepare for the Next Version
@@ -47,7 +47,7 @@ Increment the minor version, the third number, modify [lib/grape-swagger/version
4747
Add the next release to [CHANGELOG.md](CHANGELOG.md).
4848

4949
```
50-
### 0.7.3 (Next)
50+
### 2.2.1 (Next)
5151
5252
#### Features
5353
@@ -62,7 +62,7 @@ Commit your changes.
6262

6363
```
6464
git add CHANGELOG.md lib/grape-swagger/version.rb
65-
git commit -m "Preparing for next developer iteration, 0.7.3."
65+
git commit -m "Preparing for next developer iteration, 2.2.1."
6666
git push origin master
6767
```
6868

@@ -71,7 +71,7 @@ git push origin master
7171
Make an announcement on the [[email protected]](mailto:[email protected]) mailing list. The general format is as follows.
7272

7373
```
74-
Grape-Swagger 0.7.2 has been released.
74+
Grape-Swagger 2.2.0 has been released.
7575
7676
There were 8 contributors to this release, not counting documentation.
7777

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

0 commit comments

Comments
 (0)