Skip to content

Commit

Permalink
increment $VERSION after 6.08 release
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Dec 2, 2019
1 parent 2940f40 commit 0cb5f2d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,6 +1,8 @@
Revision history for HTTP-Cookies. The HTTP::Cookies module used to be bundled
with the libwww-perl distribution.

{{$NEXT}}

6.08 2019-12-02 15:58:32Z
- allow different "ignore_discard" value at save() time (GH#2) (Alex Peters)

Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -33,7 +33,7 @@ my %WriteMakefileArgs = (
"URI" => 0,
"warnings" => 0
},
"VERSION" => "6.08",
"VERSION" => "6.09",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Cookies.pm
Expand Up @@ -5,7 +5,7 @@ use HTTP::Date qw(str2time parse_date time2str);
use HTTP::Headers::Util qw(_split_header_words join_header_words);

our $EPOCH_OFFSET;
our $VERSION = '6.08';
our $VERSION = '6.09';

# Legacy: because "use "HTTP::Cookies" used be the ONLY way
# to load the class HTTP::Cookies::Netscape.
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Cookies/Microsoft.pm
Expand Up @@ -2,7 +2,7 @@ package HTTP::Cookies::Microsoft;

use strict;

our $VERSION = '6.08';
our $VERSION = '6.09';

require HTTP::Cookies;
our @ISA=qw(HTTP::Cookies);
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Cookies/Netscape.pm
Expand Up @@ -2,7 +2,7 @@ package HTTP::Cookies::Netscape;

use strict;

our $VERSION = '6.08';
our $VERSION = '6.09';

require HTTP::Cookies;
our @ISA=qw(HTTP::Cookies);
Expand Down

0 comments on commit 0cb5f2d

Please sign in to comment.