Skip to content

Commit

Permalink
Data-Dump-1.08
Browse files Browse the repository at this point in the history
  • Loading branch information
gisle committed Oct 21, 2008
1 parent 9bc5151 commit 93f184a
Show file tree
Hide file tree
Showing 14 changed files with 494 additions and 117 deletions.
85 changes: 85 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,88 @@
2006-11-29 Gisle Aas <gisle@ActiveState.com>

Release 1.08

By popular demand; don't put underscore into dumped integers
to group thousands.



2006-11-24 Gisle Aas <gisle@ActiveState.com>

Release 1.07

Remove unused code.

Add some more tests.



2004-11-12 Gisle Aas <gisle@ActiveState.com>

Release 1.06

Compatibility fix for bleadperl by David Dyck <david.dyck@fluke.com>.



2004-11-11 Gisle Aas <gisle@ActiveState.com>

Release 1.05

Improved track scalar references; dump() ended up
recursing forever on some cyclic structures.

More tests.



2004-11-05 Gisle Aas <gisle@ActiveState.com>

Release 1.04

Try to not be confused when dumping tied hashes or arrays.
<https://rt.cpan.org/Ticket/Display.html?id=6604>.



2004-04-13 Gisle Aas <gisle@ActiveState.com>

Release 1.03

Dump strings with chars with ord > 255 using \x{...} escapes.



2003-12-18 Gisle Aas <gisle@ActiveState.com>

Release 1.02

Documentation fixes by Paul Croome <Paul.Croome@softwareag.com>.



2003-10-10 Gisle Aas <gisle@ActiveState.com>

Release 1.01

Improved formatting of Regexp objects. Put top level modifiers in
the normal place and smart selection of separators.

Perl 5.6 or better required.



2003-10-06 Gisle Aas <gisle@ActiveState.com>

Release 1.00

Support dumping of Regexp objects.

If all the keys of a hash looks numeric sort them accordingly.

Don't quote plain normalized integer keys.


2000-09-11 Gisle Aas <gisle@ActiveState.com>

Release 0.04
Expand Down
8 changes: 7 additions & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
Changes
Dump.pm
lib/Data/Dump.pm
MANIFEST
Makefile.PL
README
t/dump.t
t/eval.t
t/glob.t
t/quote.t
t/quote-unicode.t
t/ref.t
t/regexp.t
t/scalar-obj.t
t/scalar.t
t/tied.t
3 changes: 2 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
require 5.006;
use ExtUtils::MakeMaker;

WriteMakefile(
NAME => "Data::Dump",
VERSION_FROM => "Dump.pm",
VERSION_FROM => "lib/Data/Dump.pm",
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz'},
);
6 changes: 1 addition & 5 deletions README
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
BEWARE!! The is only an alpha release of experimental code. You
should be prepared that the interface will change or that the module
will simply go away in the future.

This package contain the Data::Dump module. It is a simplification of
Sarathy's Data::Dumper. I made it to demonstrate for Sarathy how I
would like Data::Dumper to work, and found it useful myself. Sarathy
Expand All @@ -21,7 +17,7 @@ set any variables. It only returns what is needed to produce a copy of
the arguments passed in. It means that `dump("foo")' simply returns
`"foo"', and `dump(1..5)' simply returns `(1, 2, 3, 4, 5)'.

Copyright 1998-1999 Gisle Aas.
Copyright 1998-1999,2003-2004 Gisle Aas.
Copyright 1996-1998 Gurusamy Sarathy.

This library is free software; you can redistribute it and/or modify
Expand Down
Loading

0 comments on commit 93f184a

Please sign in to comment.