Skip to content

Commit

Permalink
bump version for DEV release to CPAN
Browse files Browse the repository at this point in the history
want to check recently added test coverage good with cpantesters
and that the POD looks ok on (meta)cpan
  • Loading branch information
leejo committed Apr 17, 2015
1 parent 43d401c commit 7939400
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/CGI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require 5.008001;
use if $] >= 5.019, 'deprecate';
use Carp 'croak';

$CGI::VERSION='4.14';
$CGI::VERSION='4.14_01';

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 @@ -322,7 +322,7 @@ use File::Spec;

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

$CGI::Carp::VERSION = '4.14';
$CGI::Carp::VERSION = '4.14_01';
$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 @@ -5,7 +5,7 @@ use warnings;

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

our $VERSION='4.14';
our $VERSION='4.14_01';

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.14';
$CGI::File::Temp::VERSION = '4.14_01';

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 @@ -4,7 +4,7 @@ use strict;
use if $] >= 5.019, 'deprecate';
use CGI ();

$CGI::Pretty::VERSION = '4.14';
$CGI::Pretty::VERSION = '4.14_01';
$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
@@ -1,7 +1,7 @@
package CGI::Push;
use if $] >= 5.019, 'deprecate';

$CGI::Push::VERSION='4.14';
$CGI::Push::VERSION='4.14_01';
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 @@ -6,7 +6,7 @@ use if $] >= 5.019, 'deprecate';
our @EXPORT_OK = qw(rearrange rearrange_header make_attributes unescape escape
expires ebcdic2ascii ascii2ebcdic);

our $VERSION = '4.14';
our $VERSION = '4.14_01';

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 @@ -2,6 +2,6 @@
# that the filehandle object is a Fh
package Fh;

$Fh::VERSION = '4.14';
$Fh::VERSION = '4.14_01';

1;

0 comments on commit 7939400

Please sign in to comment.