Skip to content

Commit 0946891

Browse files
bump all $VERSIONs to 6.07
1 parent 0266ef4 commit 0946891

10 files changed

Lines changed: 10 additions & 10 deletions

File tree

lib/HTTP/Config.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use URI;
55
use vars qw($VERSION);
66

7-
$VERSION = "6.00";
7+
$VERSION = "6.07";
88

99
sub new {
1010
my $class = shift;

lib/HTTP/Headers.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use Carp ();
55

66
use vars qw($VERSION $TRANSLATE_UNDERSCORE);
7-
$VERSION = "6.05";
7+
$VERSION = "6.07";
88

99
# The $TRANSLATE_UNDERSCORE variable controls whether '_' can be used
1010
# as a replacement for '-' in header field names.

lib/HTTP/Headers/Auth.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package HTTP::Headers::Auth;
22

33
use strict;
44
use vars qw($VERSION);
5-
$VERSION = "6.00";
5+
$VERSION = "6.07";
66

77
use HTTP::Headers;
88

lib/HTTP/Headers/ETag.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package HTTP::Headers::ETag;
22

33
use strict;
44
use vars qw($VERSION);
5-
$VERSION = "6.00";
5+
$VERSION = "6.07";
66

77
require HTTP::Date;
88

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 vars qw($VERSION @ISA @EXPORT_OK);
55

6-
$VERSION = "6.03";
6+
$VERSION = "6.07";
77

88
require Exporter;
99
@ISA=qw(Exporter);

lib/HTTP/Message.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package HTTP::Message;
22

33
use strict;
44
use vars qw($VERSION $AUTOLOAD);
5-
$VERSION = "6.06";
5+
$VERSION = "6.07";
66

77
require HTTP::Headers;
88
require Carp;

lib/HTTP/Request.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package HTTP::Request;
22

33
require HTTP::Message;
44
@ISA = qw(HTTP::Message);
5-
$VERSION = "6.00";
5+
$VERSION = "6.07";
66

77
use strict;
88

lib/HTTP/Request/Common.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require Exporter;
1313
require HTTP::Request;
1414
use Carp();
1515

16-
$VERSION = "6.04";
16+
$VERSION = "6.07";
1717

1818
my $CRLF = "\015\012"; # "\r\n" is not portable
1919

lib/HTTP/Response.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package HTTP::Response;
22

33
require HTTP::Message;
44
@ISA = qw(HTTP::Message);
5-
$VERSION = "6.04";
5+
$VERSION = "6.07";
66

77
use strict;
88
use HTTP::Status ();

lib/HTTP/Status.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require Exporter;
99
@ISA = qw(Exporter);
1010
@EXPORT = qw(is_info is_success is_redirect is_error status_message);
1111
@EXPORT_OK = qw(is_client_error is_server_error);
12-
$VERSION = "6.03";
12+
$VERSION = "6.07";
1313

1414
# Note also addition of mnemonics to @EXPORT below
1515

0 commit comments

Comments
 (0)