increment $VERSION after 1.003029 release
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / DumpHistory.pm
index 12070f6..80bd7cd 100644 (file)
@@ -1,12 +1,15 @@
 use strict;
 use warnings;
 package Devel::REPL::Plugin::DumpHistory;
+# ABSTRACT: Plugin for Devel::REPL to save or print the history
+
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
 
 ## Seems to be a sequence issue with requires
-# requires qw{ history }; 
+# requires qw{ history };
 
 around 'read' => sub {
   my $orig = shift;
@@ -43,10 +46,7 @@ sub print_history {
 
 __END__
 
-=head1 NAME
-
-Devel::REPL::Plugin::DumpHistory - Plugin for Devel::REPL to save or print
-the history.
+=pod
 
 =head1 SYNOPSIS
 
@@ -60,7 +60,7 @@ the history.
 
 =head1 DESCRIPTION
 
-Plugin that adds the C<:dump> and C<:dump file_name> commands to the 
+Plugin that adds the C<:dump> and C<:dump file_name> commands to the
 repl which will print the history to STDOUT or append the history to the
 file given.