From d05c59063bbdcc621a9320035872a5fb0822973b Mon Sep 17 00:00:00 2001 From: Gustavo Araujo Date: Thu, 27 Apr 2023 12:30:56 -0300 Subject: [PATCH] Bump to `2.5.0` version --- CHANGELOG.md | 5 +++-- faraday-http-cache.gemspec | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 049f4e5..41217bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,11 @@ ## Unreleased +## 2.5.0 (2023-04-27) + * Add `reason_phrase` from the HTTP response to the data stored in the cache according to [RFC7230](https://www.rfc-editor.org/rfc/rfc7230#section-3.1.2) via [#134](https://github.com/sourcelevel/faraday-http-cache/pull/134) ## 2.4.1 (2022-08-08) - * require `Logger` in `BaseStrategy` via [#131](https://github.com/sourcelevel/faraday-http-cache/pull/131) + * Require `Logger` in `BaseStrategy` via [#131](https://github.com/sourcelevel/faraday-http-cache/pull/131) * Use unique and sorted headers from the Vary header in `ByVary` strategy via [#132](https://github.com/sourcelevel/faraday-http-cache/pull/132) - ## 2.4.0 (2022-06-07) * Introduced a new `strategy` option to support different cache storage strategies. * The original strategy moved from `Faraday::HttpCache::Storage` to `Faraday::HttpCache::Strategies::ByUrl`. diff --git a/faraday-http-cache.gemspec b/faraday-http-cache.gemspec index 0d7eb46..ac49508 100644 --- a/faraday-http-cache.gemspec +++ b/faraday-http-cache.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |gem| gem.name = 'faraday-http-cache' - gem.version = '2.4.1' + gem.version = '2.5.0' gem.licenses = ['Apache-2.0'] gem.description = 'Middleware to handle HTTP caching' gem.summary = 'A Faraday middleware that stores and validates cache expiration.'