diff --git a/Changes b/Changes index 0495f7d4..b1f518d1 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for HTTP-Message +{{$NEXT}} + 6.34 2021-11-08 14:27:36Z - Catch case of empty name/value in header words split. (GH#168) (Galen Huntington) diff --git a/Makefile.PL b/Makefile.PL index 62b750f8..ca21c9a0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -52,7 +52,7 @@ my %WriteMakefileArgs = ( "lib" => 0, "overload" => 0 }, - "VERSION" => "6.34", + "VERSION" => "6.35", "test" => { "TESTS" => "t/*.t" } diff --git a/lib/HTTP/Config.pm b/lib/HTTP/Config.pm index feb1e8b4..a76aa20a 100644 --- a/lib/HTTP/Config.pm +++ b/lib/HTTP/Config.pm @@ -3,7 +3,7 @@ package HTTP::Config; use strict; use warnings; -our $VERSION = '6.34'; +our $VERSION = '6.35'; use URI; diff --git a/lib/HTTP/Headers.pm b/lib/HTTP/Headers.pm index edbd55b4..14dbc895 100644 --- a/lib/HTTP/Headers.pm +++ b/lib/HTTP/Headers.pm @@ -3,7 +3,7 @@ package HTTP::Headers; use strict; use warnings; -our $VERSION = '6.34'; +our $VERSION = '6.35'; use Carp (); diff --git a/lib/HTTP/Headers/Auth.pm b/lib/HTTP/Headers/Auth.pm index 5d9cd2f0..3ee6393b 100644 --- a/lib/HTTP/Headers/Auth.pm +++ b/lib/HTTP/Headers/Auth.pm @@ -3,7 +3,7 @@ package HTTP::Headers::Auth; use strict; use warnings; -our $VERSION = '6.34'; +our $VERSION = '6.35'; use HTTP::Headers; diff --git a/lib/HTTP/Headers/ETag.pm b/lib/HTTP/Headers/ETag.pm index deb425ab..a35c7f05 100644 --- a/lib/HTTP/Headers/ETag.pm +++ b/lib/HTTP/Headers/ETag.pm @@ -3,7 +3,7 @@ package HTTP::Headers::ETag; use strict; use warnings; -our $VERSION = '6.34'; +our $VERSION = '6.35'; require HTTP::Date; diff --git a/lib/HTTP/Headers/Util.pm b/lib/HTTP/Headers/Util.pm index 411ba604..74e01163 100644 --- a/lib/HTTP/Headers/Util.pm +++ b/lib/HTTP/Headers/Util.pm @@ -3,7 +3,7 @@ package HTTP::Headers::Util; use strict; use warnings; -our $VERSION = '6.34'; +our $VERSION = '6.35'; use Exporter 5.57 'import'; diff --git a/lib/HTTP/Message.pm b/lib/HTTP/Message.pm index f65b6d3e..f7bb1c79 100644 --- a/lib/HTTP/Message.pm +++ b/lib/HTTP/Message.pm @@ -3,7 +3,7 @@ package HTTP::Message; use strict; use warnings; -our $VERSION = '6.34'; +our $VERSION = '6.35'; require HTTP::Headers; require Carp; diff --git a/lib/HTTP/Request.pm b/lib/HTTP/Request.pm index 6ea43dc1..1eb4c67a 100644 --- a/lib/HTTP/Request.pm +++ b/lib/HTTP/Request.pm @@ -3,7 +3,7 @@ package HTTP::Request; use strict; use warnings; -our $VERSION = '6.34'; +our $VERSION = '6.35'; use base 'HTTP::Message'; diff --git a/lib/HTTP/Request/Common.pm b/lib/HTTP/Request/Common.pm index 3340af25..71a9f702 100644 --- a/lib/HTTP/Request/Common.pm +++ b/lib/HTTP/Request/Common.pm @@ -3,7 +3,7 @@ package HTTP::Request::Common; use strict; use warnings; -our $VERSION = '6.34'; +our $VERSION = '6.35'; our $DYNAMIC_FILE_UPLOAD ||= 0; # make it defined (don't know why) diff --git a/lib/HTTP/Response.pm b/lib/HTTP/Response.pm index 2f0ed747..492a16e4 100644 --- a/lib/HTTP/Response.pm +++ b/lib/HTTP/Response.pm @@ -3,7 +3,7 @@ package HTTP::Response; use strict; use warnings; -our $VERSION = '6.34'; +our $VERSION = '6.35'; use base 'HTTP::Message'; diff --git a/lib/HTTP/Status.pm b/lib/HTTP/Status.pm index b3f842a8..0e659f56 100644 --- a/lib/HTTP/Status.pm +++ b/lib/HTTP/Status.pm @@ -3,7 +3,7 @@ package HTTP::Status; use strict; use warnings; -our $VERSION = '6.34'; +our $VERSION = '6.35'; use Exporter 5.57 'import';