From 3f4c3207f2d368e777e9437b1001982c3bee3b6f Mon Sep 17 00:00:00 2001 From: Bartosz Blimke Date: Tue, 20 Feb 2024 03:51:40 +0100 Subject: [PATCH] Version 3.21.1 --- CHANGELOG.md | 4 ++++ lib/webmock/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd7b928b..a0f6bc51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +# 3.21.1 + + * The stubbed Net::HTTPResponse#uri now returns request.uri, aligning it with the behavior of an actual Net::HTTPResponse. + # 3.21.0 * Don't use deprecated Rack::VERSION for Rack >= 3 diff --git a/lib/webmock/version.rb b/lib/webmock/version.rb index 1866161c..cbd62847 100644 --- a/lib/webmock/version.rb +++ b/lib/webmock/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module WebMock - VERSION = '3.21.0' unless defined?(::WebMock::VERSION) + VERSION = '3.21.1' unless defined?(::WebMock::VERSION) end