Skip to content

Commit 2a7dd57

Browse files
committed
increment $VERSION after 6.44 release
1 parent 2315324 commit 2a7dd57

File tree

12 files changed

+13
-11
lines changed

12 files changed

+13
-11
lines changed

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.44 2022-10-26 20:49:00Z
46
- Made the Clone module a hard requirement, so we don't have to
57
provide a fallback function for HTTP::Headers::clone().

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ my %WriteMakefileArgs = (
5353
"lib" => 0,
5454
"overload" => 0
5555
},
56-
"VERSION" => "6.44",
56+
"VERSION" => "6.45",
5757
"test" => {
5858
"TESTS" => "t/*.t"
5959
}

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.44';
6+
our $VERSION = '6.45';
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.44';
6+
our $VERSION = '6.45';
77

88
use Clone qw(clone);
99
use Carp ();

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.44';
6+
our $VERSION = '6.45';
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.44';
6+
our $VERSION = '6.45';
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.44';
6+
our $VERSION = '6.45';
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.44';
6+
our $VERSION = '6.45';
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.44';
6+
our $VERSION = '6.45';
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.44';
6+
our $VERSION = '6.45';
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)