Skip to content

Commit

Permalink
release 0.02
Browse files Browse the repository at this point in the history
  • Loading branch information
patch committed Dec 12, 2011
1 parent c58cf76 commit 3b760e2
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 16 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.02
date: 2011-12-12
changes:
- Improved POD, Build.PL, and INSTALL
---
version: 0.01
date: 2011-12-10
changes:
Expand Down
16 changes: 9 additions & 7 deletions README
Expand Up @@ -3,20 +3,14 @@ NAME
debugging

VERSION
This document describes String::Dump version 0.01.
This document describes String::Dump version 0.02.

SYNOPSIS
use String::Dump;

say 'hex: ', dump_string($string); # hex mode by default
say 'oct: ', dump_string(oct => $string); # octal mode

NOTICE
This is an early release of String::Dump. Feedback is appreciated! To
give suggestions or report an issue, contact <mailto:patch@cpan.org> or
open an issue at <https://github.com/patch/string-dump-pm5/issues>. Pull
requests are welcome at <https://github.com/patch/string-dump-pm5>.

DESCRIPTION
This module provides the function "dump_string" and exports it by
default. When debugging or reviewing non-ASCII data, "dump_string" is
Expand Down Expand Up @@ -142,7 +136,15 @@ DESCRIPTION

say dump_string($string);

CONTRIBUTIONS
This is an early release of String::Dump. Feedback is appreciated! To
give suggestions or report an issue, contact <mailto:patch@cpan.org> or
open an issue at <https://github.com/patch/string-dump-pm5/issues>. Pull
requests are welcome at <https://github.com/patch/string-dump-pm5>.

SEE ALSO
* Template::Plugin::StringDump - String::Dump plugin for TT

* Data::HexDump - Simple hex dumping using the default output of the
Unix "hexdump" utility

Expand Down
20 changes: 11 additions & 9 deletions lib/String/Dump.pm
Expand Up @@ -6,7 +6,7 @@ use warnings;
use charnames qw( :full );
use parent 'Exporter';

our $VERSION = '0.01';
our $VERSION = '0.02';
our @EXPORT = qw( dump_string );

use constant DEFAULT_MODE => 'hex';
Expand Down Expand Up @@ -54,7 +54,7 @@ String::Dump - Dump strings of characters or bytes for printing and debugging
=head1 VERSION
This document describes String::Dump version 0.01.
This document describes String::Dump version 0.02.
=head1 SYNOPSIS
Expand All @@ -63,13 +63,6 @@ This document describes String::Dump version 0.01.
say 'hex: ', dump_string($string); # hex mode by default
say 'oct: ', dump_string(oct => $string); # octal mode
=head1 NOTICE
This is an early release of String::Dump. Feedback is appreciated! To give
suggestions or report an issue, contact L<mailto:patch@cpan.org> or open an
issue at L<https://github.com/patch/string-dump-pm5/issues>. Pull requests
are welcome at L<https://github.com/patch/string-dump-pm5>.
=head1 DESCRIPTION
This module provides the function C<dump_string> and exports it by default.
Expand Down Expand Up @@ -207,10 +200,19 @@ To convert a variable in-place, pass it to utf8::decode instead.
say dump_string($string);
=head1 CONTRIBUTIONS
This is an early release of String::Dump. Feedback is appreciated! To give
suggestions or report an issue, contact L<mailto:patch@cpan.org> or open an
issue at L<https://github.com/patch/string-dump-pm5/issues>. Pull requests
are welcome at L<https://github.com/patch/string-dump-pm5>.
=head1 SEE ALSO
=over
=item * L<Template::Plugin::StringDump> - String::Dump plugin for TT
=item * L<Data::HexDump> - Simple hex dumping using the default output of the
Unix C<hexdump> utility
Expand Down
1 change: 1 addition & 0 deletions xt/author/spelling.t
Expand Up @@ -12,4 +12,5 @@ __DATA__
dec
oct
OO
TT
utf

0 comments on commit 3b760e2

Please sign in to comment.