Skip to content

Commit 9d58686

Browse files
committed
increment $VERSION after 6.11 release
1 parent be4df9f commit 9d58686

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.11 2023-12-07 16:36:52Z
57
- Replace "Test" with "Test::More" (GH#70) (James Raspass)
68

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ my %WriteMakefileArgs = (
3232
"URI" => 0,
3333
"warnings" => 0
3434
},
35-
"VERSION" => "6.11",
35+
"VERSION" => "6.12",
3636
"test" => {
3737
"TESTS" => "t/*.t"
3838
}

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.10';
8+
our $VERSION = '6.12';
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.10';
5+
our $VERSION = '6.12';
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.10';
5+
our $VERSION = '6.12';
66

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

0 commit comments

Comments
 (0)