increment $VERSION after 1.003027 release
Karen Etheridge [Sun, 16 Aug 2015 05:21:20 +0000 (22:21 -0700)]
39 files changed:
Changes
lib/Devel/REPL.pm
lib/Devel/REPL/Error.pm
lib/Devel/REPL/Meta/Plugin.pm
lib/Devel/REPL/Plugin.pm
lib/Devel/REPL/Plugin/B/Concise.pm
lib/Devel/REPL/Plugin/Colors.pm
lib/Devel/REPL/Plugin/Commands.pm
lib/Devel/REPL/Plugin/Completion.pm
lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm
lib/Devel/REPL/Plugin/CompletionDriver/INC.pm
lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm
lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm
lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm
lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm
lib/Devel/REPL/Plugin/DDC.pm
lib/Devel/REPL/Plugin/DDS.pm
lib/Devel/REPL/Plugin/DumpHistory.pm
lib/Devel/REPL/Plugin/FancyPrompt.pm
lib/Devel/REPL/Plugin/FindVariable.pm
lib/Devel/REPL/Plugin/History.pm
lib/Devel/REPL/Plugin/Interrupt.pm
lib/Devel/REPL/Plugin/LexEnv.pm
lib/Devel/REPL/Plugin/MultiLine/PPI.pm
lib/Devel/REPL/Plugin/Nopaste.pm
lib/Devel/REPL/Plugin/OutputCache.pm
lib/Devel/REPL/Plugin/PPI.pm
lib/Devel/REPL/Plugin/Packages.pm
lib/Devel/REPL/Plugin/Peek.pm
lib/Devel/REPL/Plugin/ReadLineHistory.pm
lib/Devel/REPL/Plugin/Refresh.pm
lib/Devel/REPL/Plugin/ShowClass.pm
lib/Devel/REPL/Plugin/Timing.pm
lib/Devel/REPL/Plugin/Turtles.pm
lib/Devel/REPL/Profile.pm
lib/Devel/REPL/Profile/Default.pm
lib/Devel/REPL/Profile/Minimal.pm
lib/Devel/REPL/Profile/Standard.pm
lib/Devel/REPL/Script.pm

diff --git a/Changes b/Changes
index ea9b1ea..bd808d8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for Devel-REPL
 
+{{ $NEXT }}
+
 1.003027   2015-08-16 05:18:24Z
   - updated some bits of the distribution packaging
 
index 03557de..278502a 100644 (file)
@@ -1,7 +1,7 @@
 package Devel::REPL;
 # ABSTRACT: A modern perl interactive shell
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Term::ReadLine;
 use Moose;
index 874f35d..606ef1a 100644 (file)
@@ -1,6 +1,6 @@
 package Devel::REPL::Error;
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Moose;
 use namespace::autoclean;
index 241478b..7b558f8 100644 (file)
@@ -2,7 +2,7 @@ use strict;
 use warnings;
 package Devel::REPL::Meta::Plugin;
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Moose;
 use namespace::autoclean;
index f4b5db9..0a67bd5 100644 (file)
@@ -2,7 +2,7 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin;
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Meta::Plugin;
 use Moose::Role ();
index 153b4d8..e0e1ab0 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::B::Concise;
 # ABSTRACT: B::Concise dumping of expression optrees
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use B::Concise 0.62 ();
index 66f7d6e..689d666 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Colors;
 # ABSTRACT: Add color to return values, warnings, and errors
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Term::ANSIColor;
index 057b63d..126634e 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Commands;
 # ABSTRACT: Generic command creation plugin using injected functions
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Scalar::Util qw(weaken);
index df99995..3782192 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Completion;
 # ABSTRACT: Extensible tab completion
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Scalar::Util 'weaken';
index 1760a18..ff500e3 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::CompletionDriver::Globals;
 # ABSTRACT: Complete global variables, packages, namespaced functions
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
index 90eba7e..290e3a8 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::CompletionDriver::INC;
 # ABSTRACT: Complete module names in use and require
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
index d953ee8..9d8eec8 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::CompletionDriver::Keywords;
 # ABSTRACT: Complete Perl keywords and operators
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
index 48a444e..4f45a17 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::CompletionDriver::LexEnv;
 # ABSTRACT: Complete variable names in the REPL's lexical environment
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
index 05eef00..10ff667 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::CompletionDriver::Methods;
 # ABSTRACT: Complete class or object method names
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
index 4377fb1..cc4c32d 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::CompletionDriver::Turtles;
 # ABSTRACT: Complete Turtles-based commands
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
index b788fb4..c897e81 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::DDC;
 # ABSTRACT: Format results with Data::Dumper::Concise
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Data::Dumper::Concise ();
index b4326f7..2146bf1 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::DDS;
 # ABSTRACT: Format results with Data::Dump::Streamer
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Data::Dump::Streamer ();
index 1149b63..001695b 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::DumpHistory;
 # ABSTRACT: Plugin for Devel::REPL to save or print the history
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index 4bc3787..3f1a253 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::FancyPrompt;
 # ABSTRACT: Facilitate user-defined prompts
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index c55c8e3..c424f86 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::FindVariable;
 # ABSTRACT: Finds variables by name
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index 42bfd42..e44bc7f 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::History;
 # ABSTRACT: Keep track of all input, provide shortcuts !1, !-1
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index 2b4a478..2fb0ba6 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Interrupt;
 # ABSTRACT: Traps SIGINT to kill long-running lines
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Sys::SigAction qw(set_sig_handler);
index a8d93d4..d3bd464 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::LexEnv;
 # ABSTRACT: Provide a lexical environment for the REPL
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index d4540a0..9421ee0 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::MultiLine::PPI;
 # ABSTRACT: Read lines until all blocks are closed
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use PPI;
index 1197aa2..39e4e23 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Nopaste;
 # ABSTRACT: #nopaste to upload session's input and output
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Moose::Util::TypeConstraints 'enum';
index 233fd50..c404553 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::OutputCache;
 # ABSTRACT: Remember past results, _ is most recent
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index cb84861..34d0c84 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::PPI;
 # ABSTRACT: PPI dumping of Perl code
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use PPI;
index 064c3fa..bbaa352 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Packages;
 # ABSTRACT: Keep track of which package the user is in
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index f5d2d5a..b4ad6cf 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Peek;
 # ABSTRACT: L<Devel::Peek> plugin for L<Devel::REPL>.
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Devel::Peek qw(Dump);
index 08b6364..4960c62 100644 (file)
@@ -8,7 +8,7 @@ use warnings;
 package Devel::REPL::Plugin::ReadLineHistory;
 # ABSTRACT: Integrate history with the facilities provided by L<Term::ReadLine>
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use File::HomeDir;
index 791c797..6544ad7 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Refresh;
 # ABSTRACT: Reload libraries with Module::Refresh
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index 3d2d977..335cbc6 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::ShowClass;
 # ABSTRACT: Dump classes initialized with Class::MOP
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index ad5e3b3..1d15717 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Timing;
 # ABSTRACT: Display execution times
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Time::HiRes 'time';
index 387f20b..325d3ba 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Turtles;
 # ABSTRACT: Generic command creation using a read hook
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Devel::REPL::Plugin;
 use Scalar::Util qw(reftype);
index b2e95da..f441022 100644 (file)
@@ -1,7 +1,7 @@
 package Devel::REPL::Profile;
 # ABSTRACT: Code to execute when re.pl starts
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Moose::Role;
 requires 'apply_profile';
index 55d2e05..2baf93e 100644 (file)
@@ -1,6 +1,6 @@
 package Devel::REPL::Profile::Default;
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Moose;
 use namespace::autoclean;
index 4e745aa..0a819b0 100644 (file)
@@ -1,6 +1,6 @@
 package Devel::REPL::Profile::Minimal;
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Moose;
 use namespace::autoclean;
index 3948d6b..938ac60 100644 (file)
@@ -1,6 +1,6 @@
 package Devel::REPL::Profile::Standard;
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Moose;
 use namespace::autoclean;
index 2b19440..6a96ada 100644 (file)
@@ -1,6 +1,6 @@
 package Devel::REPL::Script;
 
-our $VERSION = '1.003027';
+our $VERSION = '1.003028';
 
 use Moose;
 use Devel::REPL;