Skip to content

Commit

Permalink
increment $VERSION after 6.45 release
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Sep 27, 2023
1 parent aaaf8f0 commit 086a89c
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.45 2023-09-27 14:27:31Z
- Allow for file ownership conflicts with Docker and GitHub Actions
(GH#193) (Olaf Alders)
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.45",
"VERSION" => "6.46",
"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.45';
our $VERSION = '6.46';

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.45';
our $VERSION = '6.46';

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.45';
our $VERSION = '6.46';

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.45';
our $VERSION = '6.46';

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.45';
our $VERSION = '6.46';

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.45';
our $VERSION = '6.46';

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.45';
our $VERSION = '6.46';

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.45';
our $VERSION = '6.46';

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.45';
our $VERSION = '6.46';

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.45';
our $VERSION = '6.46';

use Exporter 5.57 'import';

Expand Down

0 comments on commit 086a89c

Please sign in to comment.