Skip to content

Commit 80c7f48

Browse files
committed
increment $VERSION after 6.42 release
1 parent 620799e commit 80c7f48

12 files changed

Lines changed: 13 additions & 11 deletions

File tree

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Revision history for HTTP-Message
22

3+
{{$NEXT}}
4+
35
6.42 2022-10-18 13:53:22Z
46
- We now don't consider the Content-Location header when asked
57
for the base URI. RFC 7231 says we shouldn't. (GH#51) (Neil Bowers)

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ my %WriteMakefileArgs = (
5454
"lib" => 0,
5555
"overload" => 0
5656
},
57-
"VERSION" => "6.42",
57+
"VERSION" => "6.43",
5858
"test" => {
5959
"TESTS" => "t/*.t"
6060
}

lib/HTTP/Config.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTTP::Config;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '6.42';
6+
our $VERSION = '6.43';
77

88
use URI;
99

lib/HTTP/Headers.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTTP::Headers;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '6.42';
6+
our $VERSION = '6.43';
77

88
use Carp ();
99

lib/HTTP/Headers/Auth.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTTP::Headers::Auth;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '6.42';
6+
our $VERSION = '6.43';
77

88
use HTTP::Headers;
99

lib/HTTP/Headers/ETag.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTTP::Headers::ETag;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '6.42';
6+
our $VERSION = '6.43';
77

88
require HTTP::Date;
99

lib/HTTP/Headers/Util.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTTP::Headers::Util;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '6.42';
6+
our $VERSION = '6.43';
77

88
use Exporter 5.57 'import';
99

lib/HTTP/Message.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTTP::Message;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '6.42';
6+
our $VERSION = '6.43';
77

88
require HTTP::Headers;
99
require Carp;

lib/HTTP/Request.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTTP::Request;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '6.42';
6+
our $VERSION = '6.43';
77

88
use parent 'HTTP::Message';
99

lib/HTTP/Request/Common.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package HTTP::Request::Common;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '6.42';
6+
our $VERSION = '6.43';
77

88
our $DYNAMIC_FILE_UPLOAD ||= 0; # make it defined (don't know why)
99
our $READ_BUFFER_SIZE = 8192;

0 commit comments

Comments
 (0)