diff options
author | Aaron Patterson <tenderlove@ruby-lang.org> | 2022-09-04 16:50:39 -0700 |
---|---|---|
committer | Aaron Patterson <tenderlove@ruby-lang.org> | 2022-09-04 16:50:39 -0700 |
commit | 12742a0610806acb769be67fd6c27fdc6c0ee593 (patch) | |
tree | 86936956d624e58d07fa82786739049cedaa8834 | |
parent | 6aad5390403ca48a0ba76e426a21274385895731 (diff) | |
download | rack-3.0.0.rc1.tar.gz |
bump version, update changelog3.0.0.rc1
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | lib/rack/version.rb | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index daca02c5..6e2a945b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. For info on how to format all future additions to this file please reference [Keep A Changelog](https://keepachangelog.com/en/1.0.0/). +## [3.0.0.rc1] - 2022-09-04 + +### SPEC Changes + +- Stream argument must implement `<<` https://github.com/rack/rack/pull/1959 +- `close` may be called on `rack.input` https://github.com/rack/rack/pull/1956 +- `rack.response_finished` may be used for executing code after the response has been finished https://github.com/rack/rack/pull/1952 + ## [3.0.0.beta1] - 2022-08-08 ### Security diff --git a/lib/rack/version.rb b/lib/rack/version.rb index 9b16e794..ae310fd5 100644 --- a/lib/rack/version.rb +++ b/lib/rack/version.rb @@ -25,7 +25,7 @@ module Rack VERSION end - RELEASE = "3.0.0.beta1" + RELEASE = "3.0.0.rc1" # Return the Rack release as a dotted string. def self.release |