Skip to content

Commit cd71b14

Browse files
committed
Bumped to 1.9.0 and updated UPGRADING.md
1 parent 1b6b7a4 commit cd71b14

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
### 1.8.1 (Next)
1+
### 1.9.1 (Next)
22

33
#### Features
44

5-
* [#2353](https://github.com/ruby-grape/grape/pull/2353): Added Rails 7.1 support - [@ericproulx](https://github.com/ericproulx).
6-
* [#2355](https://github.com/ruby-grape/grape/pull/2355): Set response headers based on Rack version - [@schinery](https://github.com/schinery).
75
* Your contribution here.
86

97
#### Fixes
108

119
* Your contribution here.
10+
*
11+
### 1.9.0 (2023/10/18)
12+
13+
#### Features
14+
15+
* [#2353](https://github.com/ruby-grape/grape/pull/2353): Added Rails 7.1 support - [@ericproulx](https://github.com/ericproulx).
16+
* [#2355](https://github.com/ruby-grape/grape/pull/2355): Set response headers based on Rack version - [@schinery](https://github.com/schinery).
1217

1318
### 1.8.0 (2023/08/30)
1419

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,9 @@ content negotiation, versioning and much more.
160160

161161
## Stable Release
162162

163-
You're reading the documentation for the next release of Grape, which should be **1.8.1**.
163+
You're reading the documentation for the next release of Grape, which should be **1.9.1**.
164164
Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version.
165-
The current stable release is [1.8.0](https://github.com/ruby-grape/grape/blob/v1.8.0/README.md).
165+
The current stable release is [1.9.0](https://github.com/ruby-grape/grape/blob/v1.9.0/README.md).
166166

167167

168168
## Project Resources

UPGRADING.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
Upgrading Grape
22
===============
33

4+
### Upgrading to >= 1.9.0
5+
6+
#### Response Headers
7+
8+
For Rack >= 3 the following response headers are returned lowercase:
9+
10+
* `content-type`
11+
* `x-cascade`
12+
13+
For Rack < 3 the following response headers are returned capitalized:
14+
15+
* `Content-Type`
16+
* `X-Cascade`
17+
418
### Upgrading to >= 1.7.0
519

620
#### Exceptions renaming

lib/grape/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
module Grape
44
# The current version of Grape.
5-
VERSION = '1.8.1'
5+
VERSION = '1.9.0'
66
end

0 commit comments

Comments
 (0)