summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--dist/Locale-Maketext/ChangeLog10
-rw-r--r--dist/Locale-Maketext/lib/Locale/Maketext.pm2
-rw-r--r--dist/Locale-Maketext/lib/Locale/Maketext/Guts.pm2
-rw-r--r--dist/Locale-Maketext/lib/Locale/Maketext/GutsLoader.pm2
-rw-r--r--pod/perldelta.pod4
6 files changed, 19 insertions, 3 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 3a702ebc5d..9cf7391acb 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -807,7 +807,7 @@ use File::Glob qw(:case);
'Locale::Maketext' =>
{
'MAINTAINER' => 'ferreira',
- 'DISTRIBUTION' => 'FERREIRA/Locale-Maketext-1.16.tar.gz',
+ 'DISTRIBUTION' => 'TODDR/Locale-Maketext-1.17.tar.gz',
'FILES' => q[dist/Locale-Maketext],
'EXCLUDED' => [ qw{perlcriticrc t/00_load.t t/pod.t} ],
'UPSTREAM' => 'blead',
diff --git a/dist/Locale-Maketext/ChangeLog b/dist/Locale-Maketext/ChangeLog
index 2e36e023ef..4f1213f80b 100644
--- a/dist/Locale-Maketext/ChangeLog
+++ b/dist/Locale-Maketext/ChangeLog
@@ -1,6 +1,14 @@
Revision history for Perl suite Locale::Maketext
-<date here>
+2010-10-20
+ * Release 1.17
+
+ Test release of 1.16_01, versioning even deprecated Guts modules.
+ This prevents CPAN upgrade circular heck. Thanks BinGOs
+
+ Tested version fix for CPAN by BinGOs. Bump to stable version and release to public
+
+2010-10-07
* Release 1.16
Blead commit bac7bf8 - Copy @_ to @_ to de-alias passed variables
diff --git a/dist/Locale-Maketext/lib/Locale/Maketext.pm b/dist/Locale-Maketext/lib/Locale/Maketext.pm
index 103df9ec2c..6c084e3fad 100644
--- a/dist/Locale-Maketext/lib/Locale/Maketext.pm
+++ b/dist/Locale-Maketext/lib/Locale/Maketext.pm
@@ -27,7 +27,7 @@ BEGIN {
}
-$VERSION = '1.16';
+$VERSION = '1.17';
@ISA = ();
$MATCH_SUPERS = 1;
diff --git a/dist/Locale-Maketext/lib/Locale/Maketext/Guts.pm b/dist/Locale-Maketext/lib/Locale/Maketext/Guts.pm
index fe0b95ab74..75c993caee 100644
--- a/dist/Locale-Maketext/lib/Locale/Maketext/Guts.pm
+++ b/dist/Locale-Maketext/lib/Locale/Maketext/Guts.pm
@@ -2,6 +2,8 @@ package Locale::Maketext::Guts;
use Locale::Maketext;
+our $VERSION = '1.17';
+
=head1 NAME
Locale::Maketext::Guts - Deprecated module to load Locale::Maketext utf8 code
diff --git a/dist/Locale-Maketext/lib/Locale/Maketext/GutsLoader.pm b/dist/Locale-Maketext/lib/Locale/Maketext/GutsLoader.pm
index ca275a2954..858fcf7663 100644
--- a/dist/Locale-Maketext/lib/Locale/Maketext/GutsLoader.pm
+++ b/dist/Locale-Maketext/lib/Locale/Maketext/GutsLoader.pm
@@ -2,6 +2,8 @@ package Locale::Maketext::GutsLoader;
use Locale::Maketext;
+our $VERSION = '1.17';
+
sub zorp { return scalar @_ }
=head1 NAME
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index d2fb9ccb1c..f2ce5ed374 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -140,6 +140,10 @@ L<[perl #75448]|http://rt.perl.org/rt3/Public/Bug/Display.html?id=75448>.
=item *
+C<Locale::Maketext> has been upgraded from 1.16 to 1.17
+
+=item *
+
C<re> has been upgraded from 0.13 to 0.14, for the sake of the new
C<use re "/flags"> pragma.