From: Marius Gavrilescu Date: Sat, 21 Apr 2018 11:42:21 +0000 (+0300) Subject: Bump version and update Changes X-Git-Tag: 0.002^0 X-Git-Url: http://git.ieval.ro/?p=data-dump-sexp.git;a=commitdiff_plain Bump version and update Changes --- diff --git a/Changes b/Changes index 47bd13d..27c39ff 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,7 @@ Revision history for Perl extension Data::Dump::Sexp. +0.002 2018-04-21T14:42+03:00 + - Improve test coverage + 0.001 2018-03-31T22:38+03:00 - Initial release diff --git a/README b/README index d08dd76..9cfaeda 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Data-Dump-Sexp version 0.001 +Data-Dump-Sexp version 0.002 ============================ Data::Dump::Sexp converts Perl structures to S-expressions. @@ -30,8 +30,8 @@ The conversion rules are as follows: 9. A scalarref or a reference to another ref is dereferenced and this procedure is restarted. -10. Anything else (regexp, filehandle, format, glob, version string) - causes an exception to be raised +10. Anything else (coderef, regexp, filehandle, format, globref, + version string) causes an exception to be raised. INSTALLATION diff --git a/lib/Data/Dump/Sexp.pm b/lib/Data/Dump/Sexp.pm index 98cf565..da48670 100644 --- a/lib/Data/Dump/Sexp.pm +++ b/lib/Data/Dump/Sexp.pm @@ -8,7 +8,7 @@ use parent qw/Exporter/; our @EXPORT = qw/dump_sexp/; our @EXPORT_OK = @EXPORT; -our $VERSION = '0.001'; +our $VERSION = '0.002'; use Carp qw/croak/; use Data::SExpression; @@ -154,7 +154,7 @@ procedure is restarted. =item 10 Anything else (coderef, regexp, filehandle, format, globref, version -string) causes an exception to be raised +string) causes an exception to be raised. =back