Skip to content

Commit

Permalink
increment $VERSION after 6.44 release
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Oct 26, 2022
1 parent 2315324 commit 2a7dd57
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for HTTP-Message

{{$NEXT}}

6.44 2022-10-26 20:49:00Z
- Made the Clone module a hard requirement, so we don't have to
provide a fallback function for HTTP::Headers::clone().
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ my %WriteMakefileArgs = (
"lib" => 0,
"overload" => 0
},
"VERSION" => "6.44",
"VERSION" => "6.45",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTTP::Config;
use strict;
use warnings;

our $VERSION = '6.44';
our $VERSION = '6.45';

use URI;

Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Headers.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTTP::Headers;
use strict;
use warnings;

our $VERSION = '6.44';
our $VERSION = '6.45';

use Clone qw(clone);
use Carp ();
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Headers/Auth.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTTP::Headers::Auth;
use strict;
use warnings;

our $VERSION = '6.44';
our $VERSION = '6.45';

use HTTP::Headers;

Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Headers/ETag.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTTP::Headers::ETag;
use strict;
use warnings;

our $VERSION = '6.44';
our $VERSION = '6.45';

require HTTP::Date;

Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Headers/Util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTTP::Headers::Util;
use strict;
use warnings;

our $VERSION = '6.44';
our $VERSION = '6.45';

use Exporter 5.57 'import';

Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Message.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTTP::Message;
use strict;
use warnings;

our $VERSION = '6.44';
our $VERSION = '6.45';

require HTTP::Headers;
require Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Request.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTTP::Request;
use strict;
use warnings;

our $VERSION = '6.44';
our $VERSION = '6.45';

use parent 'HTTP::Message';

Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Request/Common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTTP::Request::Common;
use strict;
use warnings;

our $VERSION = '6.44';
our $VERSION = '6.45';

our $DYNAMIC_FILE_UPLOAD ||= 0; # make it defined (don't know why)
our $READ_BUFFER_SIZE = 8192;
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Response.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTTP::Response;
use strict;
use warnings;

our $VERSION = '6.44';
our $VERSION = '6.45';

use parent 'HTTP::Message';

Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Status.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package HTTP::Status;
use strict;
use warnings;

our $VERSION = '6.44';
our $VERSION = '6.45';

use Exporter 5.57 'import';

Expand Down

0 comments on commit 2a7dd57

Please sign in to comment.