Skip to content

Commit

Permalink
restore VERSION vars to libs
Browse files Browse the repository at this point in the history
otherwise CPAN won't index them... AAAAAAAAAAArrrrrrgggggghhhhhh

Revert " bump VERSION and Changes for CPAN release v4.28"

This reverts commit e35acfa.
  • Loading branch information
leejo committed Jun 9, 2016
1 parent 9754561 commit ca17120
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 4 deletions.
4 changes: 1 addition & 3 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
4.29 2016-06-08
4.30 2016-06-08

[ FEATURES ]
- Add SameSite support to Cookie handling (thanks to pangyre)
Expand All @@ -19,8 +19,6 @@
MultipartBuffer package though use of ISA or base (or parent) then you
will need to update your code to use CGI::MultipartBuffer

- VERSION has been remove from all but the main CGI package

- fake using strict and warnings to appease CPANTS Kwalitee

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

$CGI::VERSION='4.29';
$CGI::VERSION='4.30';

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

Expand Down
1 change: 1 addition & 0 deletions lib/CGI/Carp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,7 @@ use File::Spec;

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

$CGI::Carp::VERSION = '4.30';
$CGI::Carp::CUSTOM_MSG = undef;
$CGI::Carp::DIE_HANDLER = undef;
$CGI::Carp::TO_BROWSER = 1;
Expand Down
2 changes: 2 additions & 0 deletions lib/CGI/Cookie.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ use warnings;

use if $] >= 5.019, 'deprecate';

our $VERSION='4.30';

use CGI::Util qw(rearrange unescape escape);
use overload '""' => \&as_string, 'cmp' => \&compare, 'fallback' => 1;

Expand Down
2 changes: 2 additions & 0 deletions lib/CGI/File/Temp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# you use it directly and your code breaks horribly.
package CGI::File::Temp;

$CGI::File::Temp::VERSION = '4.30';

use parent File::Temp;
use parent Fh;

Expand Down
1 change: 1 addition & 0 deletions lib/CGI/Pretty.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ use warnings;
use if $] >= 5.019, 'deprecate';
use CGI ();

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

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

$CGI::Push::VERSION='4.30';
use CGI;
use CGI::Util 'rearrange';
@ISA = ('CGI');
Expand Down
2 changes: 2 additions & 0 deletions lib/CGI/Util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ use if $] >= 5.019, 'deprecate';
our @EXPORT_OK = qw(rearrange rearrange_header make_attributes unescape escape
expires ebcdic2ascii ascii2ebcdic);

our $VERSION = '4.30';

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

my $appease_cpants_kwalitee = q/
Expand Down
2 changes: 2 additions & 0 deletions lib/Fh.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ package Fh;
use strict;
use warnings;

$Fh::VERSION = '4.30';

1;

0 comments on commit ca17120

Please sign in to comment.