Skip to content

Commit

Permalink
increment $VERSION after 6.34 release
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Nov 8, 2021
1 parent db333ce commit 874714c
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.34 2021-11-08 14:27:36Z
- Catch case of empty name/value in header words split. (GH#168) (Galen Huntington)

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ my %WriteMakefileArgs = (
"lib" => 0,
"overload" => 0
},
"VERSION" => "6.34",
"VERSION" => "6.35",
"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.34';
our $VERSION = '6.35';

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.34';
our $VERSION = '6.35';

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.34';
our $VERSION = '6.35';

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.34';
our $VERSION = '6.35';

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.34';
our $VERSION = '6.35';

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.34';
our $VERSION = '6.35';

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.34';
our $VERSION = '6.35';

use base '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.34';
our $VERSION = '6.35';

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

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.34';
our $VERSION = '6.35';

use base '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.34';
our $VERSION = '6.35';

use Exporter 5.57 'import';

Expand Down

0 comments on commit 874714c

Please sign in to comment.