Skip to content

Commit

Permalink
bump VERSION and Changes for v4.14 release to CPAN
Browse files Browse the repository at this point in the history
  • Loading branch information
leejo committed Apr 1, 2015
1 parent b4f30e4 commit 9690948
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,4 +1,4 @@
4.13_05 2015-03-25
4.14 2015-04-01

[ RELEASE NOTES ]
- This release removes the AUTOLOAD and compile optimisations from CGI.pm
Expand Down
2 changes: 1 addition & 1 deletion lib/CGI.pm
Expand Up @@ -3,7 +3,7 @@ require 5.008001;
use if $] >= 5.019, 'deprecate';
use Carp 'croak';

$CGI::VERSION='4.13_05';
$CGI::VERSION='4.14';

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

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

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

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

our $VERSION='4.13_05';
our $VERSION='4.14';

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
Expand Up @@ -3,7 +3,7 @@
# you use it directly and your code breaks horribly.
package CGI::File::Temp;

$CGI::File::Temp::VERSION = '4.13_05';
$CGI::File::Temp::VERSION = '4.14';

use parent File::Temp;
use parent Fh;
Expand Down
2 changes: 1 addition & 1 deletion lib/CGI/Pretty.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use if $] >= 5.019, 'deprecate';
use CGI ();

$CGI::Pretty::VERSION = '4.13_05';
$CGI::Pretty::VERSION = '4.14';
$CGI::DefaultClass = __PACKAGE__;
$CGI::Pretty::AutoloadClass = 'CGI';
@CGI::Pretty::ISA = qw( CGI );
Expand Down
2 changes: 1 addition & 1 deletion lib/CGI/Push.pm
@@ -1,7 +1,7 @@
package CGI::Push;
use if $] >= 5.019, 'deprecate';

$CGI::Push::VERSION='4.13_05';
$CGI::Push::VERSION='4.14';
use CGI;
use CGI::Util 'rearrange';
@ISA = ('CGI');
Expand Down
2 changes: 1 addition & 1 deletion lib/CGI/Util.pm
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.13_05';
our $VERSION = '4.14';

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

Expand Down
2 changes: 1 addition & 1 deletion lib/Fh.pm
Expand Up @@ -2,6 +2,6 @@
# that the filehandle object is a Fh
package Fh;

$Fh::VERSION = '4.13_05';
$Fh::VERSION = '4.14';

1;

0 comments on commit 9690948

Please sign in to comment.