diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ad972c5..299fb6a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.4.0] - 2024-06-17 + +### Changed + +- Ensure request body is always rewound [#425](https://github.com/interagent/committee/pull/425) + - `Rack::Request#POST` no longer rewind, it because removed in rack/rack@42aff22f708123839ba706cbe659d108b47c40c7. + ## [5.3.0] - 2024-05-16 ### Added diff --git a/lib/committee/version.rb b/lib/committee/version.rb index 91873fc1..a103434a 100644 --- a/lib/committee/version.rb +++ b/lib/committee/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Committee - VERSION = '5.3.0'.freeze + VERSION = '5.4.0'.freeze end