Skip to content

Commit

Permalink
bump VERSION and Changes for CPAN release
Browse files Browse the repository at this point in the history
  • Loading branch information
leejo committed Sep 25, 2020
1 parent 83c7b01 commit 40e0c3f
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 9 deletions.
7 changes: 6 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
4.50 2019-06-22
4.51 2020-10-01

[ DOCUMENTATION ]
- Document support for SameSite=None cookies in CGI::Cookie (GH #244)

4.50 2020-06-22

[ ENHANCEMENT ]
- Add APPEND_QUERY_STRING option (GH #243, thanks to stevenh)
Expand Down
2 changes: 1 addition & 1 deletion lib/CGI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use strict;
use warnings;
#/;

$CGI::VERSION='4.50';
$CGI::VERSION='4.51';

use CGI::Util qw(rearrange rearrange_header make_attributes unescape escape expires ebcdic2ascii ascii2ebcdic);

Expand Down
2 changes: 1 addition & 1 deletion lib/CGI/Carp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ use File::Spec;

$main::SIG{__WARN__}=\&CGI::Carp::warn;

$CGI::Carp::VERSION = '4.50';
$CGI::Carp::VERSION = '4.51';
$CGI::Carp::CUSTOM_MSG = undef;
$CGI::Carp::DIE_HANDLER = undef;
$CGI::Carp::TO_BROWSER = 1;
Expand Down
2 changes: 1 addition & 1 deletion lib/CGI/Cookie.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package CGI::Cookie;
use strict;
use warnings;

our $VERSION='4.50';
our $VERSION='4.51';

use CGI::Util qw(rearrange unescape escape);
use overload '""' => \&as_string, 'cmp' => \&compare, 'fallback' => 1;
Expand Down
2 changes: 1 addition & 1 deletion lib/CGI/File/Temp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# you use it directly and your code breaks horribly.
package CGI::File::Temp;

$CGI::File::Temp::VERSION = '4.50';
$CGI::File::Temp::VERSION = '4.51';

use parent File::Temp;
use parent Fh;
Expand Down
2 changes: 1 addition & 1 deletion lib/CGI/Pretty.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

use CGI ();

$CGI::Pretty::VERSION = '4.50';
$CGI::Pretty::VERSION = '4.51';
$CGI::DefaultClass = __PACKAGE__;
@CGI::Pretty::ISA = qw( CGI );

Expand Down
2 changes: 1 addition & 1 deletion lib/CGI/Push.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
use warnings;
#/;

$CGI::Push::VERSION='4.50';
$CGI::Push::VERSION='4.51';
use CGI;
use CGI::Util 'rearrange';
@ISA = ('CGI');
Expand Down
2 changes: 1 addition & 1 deletion lib/CGI/Util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
our @EXPORT_OK = qw(rearrange rearrange_header make_attributes unescape escape
expires ebcdic2ascii ascii2ebcdic);

our $VERSION = '4.50';
our $VERSION = '4.51';

our $_EBCDIC = "\t" ne "\011";

Expand Down
2 changes: 1 addition & 1 deletion lib/Fh.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ package Fh;
use strict;
use warnings;

$Fh::VERSION = '4.50';
$Fh::VERSION = '4.51';

1;

0 comments on commit 40e0c3f

Please sign in to comment.