Skip to content

Commit b94f6fb

Browse files
committed
v6.29
- fix issue with HTTP::Request internal cache for canonical url when using URI::URL (GH#146) (andrew-grechkin)
1 parent 146a8ca commit b94f6fb

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

Changes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Revision history for HTTP-Message
22

3-
{{$NEXT}}
3+
6.29 2021-03-06 04:50:34Z
44
- fix issue with HTTP::Request internal cache for canonical url when using
55
URI::URL (GH#146) (andrew-grechkin)
66

META.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@
8585
"Test::More" : "0.88",
8686
"Time::Local" : "0",
8787
"Try::Tiny" : "0",
88+
"URI::URL" : "0",
8889
"lib" : "0",
8990
"overload" : "0",
9091
"perl" : "5.008001"
@@ -105,10 +106,10 @@
105106
"x_IRC" : "irc://irc.perl.org/#lwp",
106107
"x_MailingList" : "mailto:[email protected]"
107108
},
108-
"version" : "6.28",
109+
"version" : "6.29",
109110
"x_Dist_Zilla" : {
110111
"perl" : {
111-
"version" : "5.030003"
112+
"version" : "5.030002"
112113
},
113114
"plugins" : [
114115
{
@@ -233,7 +234,7 @@
233234
"class" : "Dist::Zilla::Plugin::InstallGuide",
234235
"config" : {
235236
"Dist::Zilla::Role::ModuleMetadata" : {
236-
"Module::Metadata" : "1.000037",
237+
"Module::Metadata" : "1.000036",
237238
"version" : "0.006"
238239
}
239240
},
@@ -612,7 +613,7 @@
612613
"branch" : null,
613614
"changelog" : "Changes",
614615
"signed" : 0,
615-
"tag" : "v6.28",
616+
"tag" : "v6.29",
616617
"tag_format" : "v%V",
617618
"tag_message" : "v%V"
618619
},
@@ -811,6 +812,7 @@
811812
"Alex Kapranoff <[email protected]>",
812813
"amire80 <[email protected]>",
813814
"Andreas J. Koenig <[email protected]>",
815+
"Andrei Grechkin <[email protected]>",
814816
"Bill Mann <[email protected]>",
815817
"Brendan Byrd <[email protected]>",
816818
"Bron Gondwana <[email protected]>",
@@ -884,7 +886,7 @@
884886
"Zakariyya Mughal <[email protected]>",
885887
"Zefram <[email protected]>"
886888
],
887-
"x_generated_by_perl" : "v5.30.3",
889+
"x_generated_by_perl" : "v5.30.2",
888890
"x_serialization_backend" : "Cpanel::JSON::XS version 4.19",
889891
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later",
890892
"x_static_install" : 1

Makefile.PL

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ my %WriteMakefileArgs = (
4646
"Test::More" => "0.88",
4747
"Time::Local" => 0,
4848
"Try::Tiny" => 0,
49+
"URI::URL" => 0,
4950
"lib" => 0,
5051
"overload" => 0
5152
},
@@ -81,6 +82,7 @@ my %FallbackPrereqs = (
8182
"Time::Local" => 0,
8283
"Try::Tiny" => 0,
8384
"URI" => "1.10",
85+
"URI::URL" => 0,
8486
"base" => 0,
8587
"lib" => 0,
8688
"overload" => 0,

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ HTTP::Message - HTTP style message (base class)
44

55
# VERSION
66

7-
version 6.28
7+
version 6.29
88

99
# SYNOPSIS
1010

cpanfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ on 'test' => sub {
3232
requires "Test::More" => "0.88";
3333
requires "Time::Local" => "0";
3434
requires "Try::Tiny" => "0";
35+
requires "URI::URL" => "0";
3536
requires "lib" => "0";
3637
requires "overload" => "0";
3738
requires "perl" => "5.008001";

0 commit comments

Comments
 (0)