increment $VERSION after 1.003029 release master
Karen Etheridge [Sat, 28 May 2022 03:33:54 +0000 (20:33 -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 c55816d..4a3facb 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for Devel-REPL
 
+{{ $NEXT }}
+
 1.003029   2022-05-28 03:31:29Z
   - removed File::HomeDir dependency
 
index 3084ae0..d321a99 100644 (file)
@@ -1,7 +1,7 @@
 package Devel::REPL;
 # ABSTRACT: A modern perl interactive shell
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Term::ReadLine;
 use Moose;
index ff86a9a..f20c587 100644 (file)
@@ -1,6 +1,6 @@
 package Devel::REPL::Error;
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Moose;
 use namespace::autoclean;
index bc020d8..22f6b79 100644 (file)
@@ -2,7 +2,7 @@ use strict;
 use warnings;
 package Devel::REPL::Meta::Plugin;
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Moose;
 use namespace::autoclean;
index a77d663..de66e27 100644 (file)
@@ -2,7 +2,7 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin;
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Meta::Plugin;
 use Moose::Role ();
index 9b23e9b..39311ff 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::B::Concise;
 # ABSTRACT: B::Concise dumping of expression optrees
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use B::Concise 0.62 ();
index 4fa73a1..4452e14 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.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Term::ANSIColor;
index ae1c118..1591977 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Commands;
 # ABSTRACT: Generic command creation plugin using injected functions
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Scalar::Util qw(weaken);
index 4d64b18..0770484 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Completion;
 # ABSTRACT: Extensible tab completion
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Scalar::Util 'weaken';
index 13e3d11..8117b5b 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::CompletionDriver::Globals;
 # ABSTRACT: Complete global variables, packages, namespaced functions
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
index 72ac5bd..de95a22 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.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
index bba685c..feb1aea 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::CompletionDriver::Keywords;
 # ABSTRACT: Complete Perl keywords and operators
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
index 74c0b2d..b39d020 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.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
index a9cd1f2..40e3662 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::CompletionDriver::Methods;
 # ABSTRACT: Complete class or object method names
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
index 52c6cf3..d343119 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::CompletionDriver::Turtles;
 # ABSTRACT: Complete Turtles-based commands
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
index 34addeb..ad41714 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::DDC;
 # ABSTRACT: Format results with Data::Dumper::Concise
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Data::Dumper::Concise ();
index 7940219..784b156 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::DDS;
 # ABSTRACT: Format results with Data::Dump::Streamer
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Data::Dump::Streamer ();
index 33409cd..80bd7cd 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.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index 08c6d64..fea7f2a 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::FancyPrompt;
 # ABSTRACT: Facilitate user-defined prompts
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index 737618d..91df2fb 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::FindVariable;
 # ABSTRACT: Finds variables by name
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index 47a499c..31baf26 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.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index 381f690..3f4636d 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Interrupt;
 # ABSTRACT: Traps SIGINT to kill long-running lines
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Sys::SigAction qw(set_sig_handler);
index aada760..77d5d74 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::LexEnv;
 # ABSTRACT: Provide a lexical environment for the REPL
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index 0dff9ef..109e54a 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.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use PPI;
index fe35ca8..d377340 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.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Moose::Util::TypeConstraints 'enum';
index ba8434c..34a28d1 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::OutputCache;
 # ABSTRACT: Remember past results, _ is most recent
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index e32c3bd..6bb7338 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::PPI;
 # ABSTRACT: PPI dumping of Perl code
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use PPI;
index 708b1f6..2a1f539 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.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index fbc57db..0120768 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.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Devel::Peek qw(Dump);
index 9cb893d..bae5df9 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.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use File::Spec;
index 5b467e6..750cbd2 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Refresh;
 # ABSTRACT: Reload libraries with Module::Refresh
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index 5b80d3c..ca09077 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::ShowClass;
 # ABSTRACT: Dump classes initialized with Class::MOP
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use namespace::autoclean;
index a9a3ccc..40dd282 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Timing;
 # ABSTRACT: Display execution times
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Time::HiRes 'time';
index 26d988e..18c02bc 100644 (file)
@@ -3,7 +3,7 @@ use warnings;
 package Devel::REPL::Plugin::Turtles;
 # ABSTRACT: Generic command creation using a read hook
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Devel::REPL::Plugin;
 use Scalar::Util qw(reftype);
index 0d4bb72..26adf9e 100644 (file)
@@ -1,7 +1,7 @@
 package Devel::REPL::Profile;
 # ABSTRACT: Code to execute when re.pl starts
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Moose::Role;
 requires 'apply_profile';
index 1c66955..251720f 100644 (file)
@@ -1,6 +1,6 @@
 package Devel::REPL::Profile::Default;
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Moose;
 use namespace::autoclean;
index 53f8443..a6e7526 100644 (file)
@@ -1,6 +1,6 @@
 package Devel::REPL::Profile::Minimal;
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Moose;
 use namespace::autoclean;
index d2c5067..3c1a975 100644 (file)
@@ -1,6 +1,6 @@
 package Devel::REPL::Profile::Standard;
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Moose;
 use namespace::autoclean;
index 5d7541b..d4c0a29 100644 (file)
@@ -1,6 +1,6 @@
 package Devel::REPL::Script;
 
-our $VERSION = '1.003029';
+our $VERSION = '1.003030';
 
 use Moose;
 use Devel::REPL;