Skip to content

Commit 9d3dfe4

Browse files
committed
Merge branch 'sawyer/data-dumper-changes' into blead
2 parents f7b64c8 + cd3c809 commit 9d3dfe4

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

dist/Data-Dumper/Changes

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,36 @@ Changes - public release history for Data::Dumper
66

77
=over 8
88

9+
=item 2.172
10+
11+
Prepare recent changes for CPAN release
12+
13+
=item 2.171 (Apr 21 2018)
14+
15+
Restore deparsing support in the XS dumper, on Perl 5.18 and earlier
16+
17+
Test fixes on older Perl versions (notably, skip tests for Unicode glob
18+
names on Perl 5.14 and earlier, which had incomplete support for Unicode
19+
in globs)
20+
21+
=item 2.170 (Jan 10 2018)
22+
23+
Fix bug when dumping globs with quoting (which now happens for
24+
all Unicode glob names)
25+
26+
Internal change: use strlcpy(), for safety
27+
28+
=item 2.169 (Dec 12 2017)
29+
30+
Behavior change: $dumper->Useqq(undef) is now treated as setting the
31+
"useqq" option, not getting it (and similarly for other options)
32+
[perl #113090]
33+
34+
=item 2.168 (Dec 1, 2017)
35+
36+
perl #119831: Quote glob names better; notably, Unicode globs are
37+
now handled correctly
38+
939
=item 2.167_02 (Aug 4 2017)
1040

1141
Attempt to work around XS deparse issues on old perls.

dist/Data-Dumper/Dumper.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
package Data::Dumper;
1111

1212
BEGIN {
13-
$VERSION = '2.171'; # Don't forget to set version and release
13+
$VERSION = '2.172'; # Don't forget to set version and release
1414
} # date in POD below!
1515

1616
#$| = 1;
@@ -1467,7 +1467,7 @@ modify it under the same terms as Perl itself.
14671467
14681468
=head1 VERSION
14691469
1470-
Version 2.171
1470+
Version 2.172
14711471
14721472
=head1 SEE ALSO
14731473

0 commit comments

Comments
 (0)