diff options
author | Father Chrysostomos <sprout@cpan.org> | 2010-09-26 16:35:45 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-09-26 16:35:45 -0700 |
commit | e2941eb00290cb2fcd0e0ca3f614f82202be65f7 (patch) | |
tree | d26579fd202e0444cdedf137a4707c06cfea24d3 | |
parent | ecf0432f1e8289d3b387151b8bf1968133dda7f2 (diff) | |
download | perl-e2941eb00290cb2fcd0e0ca3f614f82202be65f7.tar.gz |
Data::Dumper version bump and perldelta
-rw-r--r-- | dist/Data-Dumper/Changes | 5 | ||||
-rw-r--r-- | dist/Data-Dumper/Dumper.pm | 4 | ||||
-rw-r--r-- | pod/perldelta.pod | 7 |
3 files changed, 14 insertions, 2 deletions
diff --git a/dist/Data-Dumper/Changes b/dist/Data-Dumper/Changes index 9db3b57fc8..921905b59c 100644 --- a/dist/Data-Dumper/Changes +++ b/dist/Data-Dumper/Changes @@ -6,6 +6,11 @@ HISTORY - public release history for Data::Dumper =over 8 +=item 2.129 (date here) + +C<Dumpxs> no longer crashes with globs returned by C<*$io_ref> +[perl #72332]. + =item 2.128 (Sep 10 2010) Promote previous release to stable version with the correct version. diff --git a/dist/Data-Dumper/Dumper.pm b/dist/Data-Dumper/Dumper.pm index 7d48c85267..85863f53d7 100644 --- a/dist/Data-Dumper/Dumper.pm +++ b/dist/Data-Dumper/Dumper.pm @@ -9,7 +9,7 @@ package Data::Dumper; -$VERSION = '2.128'; # Don't forget to set version and release date in POD! +$VERSION = '2.129'; # Don't forget to set version and release date in POD! #$| = 1; @@ -1297,7 +1297,7 @@ modify it under the same terms as Perl itself. =head1 VERSION -Version 2.128 (Sep 10 2010) +Version 2.129 (Sep 10 2010) =head1 SEE ALSO diff --git a/pod/perldelta.pod b/pod/perldelta.pod index a4f92a83ee..48003fe575 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -169,6 +169,13 @@ XXX =item * +C<Data::Dumper> has been upgraded from version 2.128 to 2.129. + +C<Dumpxs> no longer crashes with globs returned by C<*$io_ref> +L<[perl #72332]|http://rt.perl.org/rt3//Public/Bug/Display.html?id=72332>. + +=item * + C<Digest::MD5> has been upgraded from version 2.40 to 2.50. It is now safe to use this module in combination with threads. |