File tree Expand file tree Collapse file tree 2 files changed +32
-2
lines changed Expand file tree Collapse file tree 2 files changed +32
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,36 @@ Changes - public release history for Data::Dumper
6
6
7
7
=over 8
8
8
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
+
9
39
=item 2.167_02 (Aug 4 2017)
10
40
11
41
Attempt to work around XS deparse issues on old perls.
Original file line number Diff line number Diff line change 10
10
package Data::Dumper ;
11
11
12
12
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
14
14
} # date in POD below!
15
15
16
16
# $| = 1;
@@ -1467,7 +1467,7 @@ modify it under the same terms as Perl itself.
1467
1467
1468
1468
=head1 VERSION
1469
1469
1470
- Version 2.171
1470
+ Version 2.172
1471
1471
1472
1472
=head1 SEE ALSO
1473
1473
You can’t perform that action at this time.
0 commit comments