summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2021-07-03 10:22:08 +0000
committerNicholas Clark <nick@ccl4.org>2021-07-05 06:11:04 +0000
commita504145e7719f51eb6f788abbd275e42bb17b1ed (patch)
tree77476db5710c4804671fd5200db2256a7407714a /dist
parentf29156f5bc3d7cbcc790b9a96cb5726162b75a87 (diff)
downloadperl-a504145e7719f51eb6f788abbd275e42bb17b1ed.tar.gz
Bump Data::Dumper's $VERSION and update Changes, for a dev release.
Diffstat (limited to 'dist')
-rw-r--r--dist/Data-Dumper/Changes6
-rw-r--r--dist/Data-Dumper/Dumper.pm4
2 files changed, 8 insertions, 2 deletions
diff --git a/dist/Data-Dumper/Changes b/dist/Data-Dumper/Changes
index 44db54f601..d8f66c36d5 100644
--- a/dist/Data-Dumper/Changes
+++ b/dist/Data-Dumper/Changes
@@ -1,5 +1,11 @@
Revision history for Perl core module Data::Dumper
+2.181_51 2021-07-03 NWCLARK
+ - For the optional array of names for the values, Dumpxs now handles names
+ that are now plain strings (eg references with string overloading).
+ The pure Perl implementation had always handled these correctly.
+
+
2.181_50 2021-07-01 NWCLARK
- Output qr'$foo' correctly (using a suggestion from Eirik Berg Hanssen)
diff --git a/dist/Data-Dumper/Dumper.pm b/dist/Data-Dumper/Dumper.pm
index 869f53975f..a97a0cbc4e 100644
--- a/dist/Data-Dumper/Dumper.pm
+++ b/dist/Data-Dumper/Dumper.pm
@@ -29,7 +29,7 @@ our ( $Indent, $Trailingcomma, $Purity, $Pad, $Varname, $Useqq, $Terse, $Freezer
our ( @ISA, @EXPORT, @EXPORT_OK, $VERSION );
BEGIN {
- $VERSION = '2.182_50'; # Don't forget to set version and release
+ $VERSION = '2.182_51'; # Don't forget to set version and release
# date in POD below!
@ISA = qw(Exporter);
@@ -1461,7 +1461,7 @@ modify it under the same terms as Perl itself.
=head1 VERSION
-Version 2.182_50
+Version 2.182_51
=head1 SEE ALSO