Skip to content

Commit

Permalink
Bumped to 1.9.0 and updated UPGRADING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
schinery committed Oct 18, 2023
1 parent 1b6b7a4 commit cd71b14
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
### 1.8.1 (Next)
### 1.9.1 (Next)

#### Features

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

#### Fixes

* Your contribution here.
*
### 1.9.0 (2023/10/18)

#### Features

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

### 1.8.0 (2023/08/30)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ content negotiation, versioning and much more.

## Stable Release

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


## Project Resources
Expand Down
14 changes: 14 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Upgrading Grape
===============

### Upgrading to >= 1.9.0

#### Response Headers

For Rack >= 3 the following response headers are returned lowercase:

* `content-type`
* `x-cascade`

For Rack < 3 the following response headers are returned capitalized:

* `Content-Type`
* `X-Cascade`

### Upgrading to >= 1.7.0

#### Exceptions renaming
Expand Down
2 changes: 1 addition & 1 deletion lib/grape/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module Grape
# The current version of Grape.
VERSION = '1.8.1'
VERSION = '1.9.0'
end

0 comments on commit cd71b14

Please sign in to comment.