Skip to content

Commit 0cb5f2d

Browse files
committed
increment $VERSION after 6.08 release
1 parent 2940f40 commit 0cb5f2d

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Revision history for HTTP-Cookies. The HTTP::Cookies module used to be bundled
22
with the libwww-perl distribution.
33

4+
{{$NEXT}}
5+
46
6.08 2019-12-02 15:58:32Z
57
- allow different "ignore_discard" value at save() time (GH#2) (Alex Peters)
68

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ my %WriteMakefileArgs = (
3333
"URI" => 0,
3434
"warnings" => 0
3535
},
36-
"VERSION" => "6.08",
36+
"VERSION" => "6.09",
3737
"test" => {
3838
"TESTS" => "t/*.t"
3939
}

lib/HTTP/Cookies.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use HTTP::Date qw(str2time parse_date time2str);
55
use HTTP::Headers::Util qw(_split_header_words join_header_words);
66

77
our $EPOCH_OFFSET;
8-
our $VERSION = '6.08';
8+
our $VERSION = '6.09';
99

1010
# Legacy: because "use "HTTP::Cookies" used be the ONLY way
1111
# to load the class HTTP::Cookies::Netscape.

lib/HTTP/Cookies/Microsoft.pm

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

33
use strict;
44

5-
our $VERSION = '6.08';
5+
our $VERSION = '6.09';
66

77
require HTTP::Cookies;
88
our @ISA=qw(HTTP::Cookies);

lib/HTTP/Cookies/Netscape.pm

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

33
use strict;
44

5-
our $VERSION = '6.08';
5+
our $VERSION = '6.09';
66

77
require HTTP::Cookies;
88
our @ISA=qw(HTTP::Cookies);

0 commit comments

Comments
 (0)