From: Karen Etheridge Date: Tue, 16 Feb 2016 01:15:10 +0000 (-0800) Subject: increment $VERSION after 1.003028 release X-Git-Tag: v1.003029~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=commitdiff_plain;h=c45376f3de16a5a467a1a26e63a279f30eb8672d increment $VERSION after 1.003028 release --- diff --git a/Changes b/Changes index 6c98acf..38c398d 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for Devel-REPL +{{ $NEXT }} + 1.003028 2016-02-16 01:13:08Z - increase the required version of Data::Dump::Streamer (see RT#105466) diff --git a/lib/Devel/REPL.pm b/lib/Devel/REPL.pm index 0210966..931c49f 100644 --- a/lib/Devel/REPL.pm +++ b/lib/Devel/REPL.pm @@ -1,7 +1,7 @@ package Devel::REPL; # ABSTRACT: A modern perl interactive shell -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Term::ReadLine; use Moose; diff --git a/lib/Devel/REPL/Error.pm b/lib/Devel/REPL/Error.pm index 606ef1a..ff86a9a 100644 --- a/lib/Devel/REPL/Error.pm +++ b/lib/Devel/REPL/Error.pm @@ -1,6 +1,6 @@ package Devel::REPL::Error; -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Moose; use namespace::autoclean; diff --git a/lib/Devel/REPL/Meta/Plugin.pm b/lib/Devel/REPL/Meta/Plugin.pm index 7b558f8..bc020d8 100644 --- a/lib/Devel/REPL/Meta/Plugin.pm +++ b/lib/Devel/REPL/Meta/Plugin.pm @@ -2,7 +2,7 @@ use strict; use warnings; package Devel::REPL::Meta::Plugin; -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Moose; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin.pm b/lib/Devel/REPL/Plugin.pm index 0a67bd5..a77d663 100644 --- a/lib/Devel/REPL/Plugin.pm +++ b/lib/Devel/REPL/Plugin.pm @@ -2,7 +2,7 @@ use strict; use warnings; package Devel::REPL::Plugin; -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Meta::Plugin; use Moose::Role (); diff --git a/lib/Devel/REPL/Plugin/B/Concise.pm b/lib/Devel/REPL/Plugin/B/Concise.pm index e0e1ab0..9b23e9b 100644 --- a/lib/Devel/REPL/Plugin/B/Concise.pm +++ b/lib/Devel/REPL/Plugin/B/Concise.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::B::Concise; # ABSTRACT: B::Concise dumping of expression optrees -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use B::Concise 0.62 (); diff --git a/lib/Devel/REPL/Plugin/Colors.pm b/lib/Devel/REPL/Plugin/Colors.pm index 689d666..4fa73a1 100644 --- a/lib/Devel/REPL/Plugin/Colors.pm +++ b/lib/Devel/REPL/Plugin/Colors.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::Colors; # ABSTRACT: Add color to return values, warnings, and errors -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Term::ANSIColor; diff --git a/lib/Devel/REPL/Plugin/Commands.pm b/lib/Devel/REPL/Plugin/Commands.pm index 126634e..ae1c118 100644 --- a/lib/Devel/REPL/Plugin/Commands.pm +++ b/lib/Devel/REPL/Plugin/Commands.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::Commands; # ABSTRACT: Generic command creation plugin using injected functions -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Scalar::Util qw(weaken); diff --git a/lib/Devel/REPL/Plugin/Completion.pm b/lib/Devel/REPL/Plugin/Completion.pm index 3782192..4d64b18 100644 --- a/lib/Devel/REPL/Plugin/Completion.pm +++ b/lib/Devel/REPL/Plugin/Completion.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::Completion; # ABSTRACT: Extensible tab completion -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Scalar::Util 'weaken'; diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm b/lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm index ff500e3..13e3d11 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::CompletionDriver::Globals; # ABSTRACT: Complete global variables, packages, namespaced functions -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Devel::REPL::Plugin::Completion; # die early if cannot load diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm b/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm index 290e3a8..72ac5bd 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::CompletionDriver::INC; # ABSTRACT: Complete module names in use and require -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Devel::REPL::Plugin::Completion; # die early if cannot load diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm b/lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm index 9d8eec8..bba685c 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::CompletionDriver::Keywords; # ABSTRACT: Complete Perl keywords and operators -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Devel::REPL::Plugin::Completion; # die early if cannot load diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm b/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm index 4f45a17..74c0b2d 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm @@ -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.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Devel::REPL::Plugin::Completion; # die early if cannot load diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm b/lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm index 10ff667..a9cd1f2 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::CompletionDriver::Methods; # ABSTRACT: Complete class or object method names -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Devel::REPL::Plugin::Completion; # die early if cannot load diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm b/lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm index cc4c32d..52c6cf3 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::CompletionDriver::Turtles; # ABSTRACT: Complete Turtles-based commands -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Devel::REPL::Plugin::Completion; # die early if cannot load diff --git a/lib/Devel/REPL/Plugin/DDC.pm b/lib/Devel/REPL/Plugin/DDC.pm index c897e81..34addeb 100644 --- a/lib/Devel/REPL/Plugin/DDC.pm +++ b/lib/Devel/REPL/Plugin/DDC.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::DDC; # ABSTRACT: Format results with Data::Dumper::Concise -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Data::Dumper::Concise (); diff --git a/lib/Devel/REPL/Plugin/DDS.pm b/lib/Devel/REPL/Plugin/DDS.pm index 2146bf1..7940219 100644 --- a/lib/Devel/REPL/Plugin/DDS.pm +++ b/lib/Devel/REPL/Plugin/DDS.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::DDS; # ABSTRACT: Format results with Data::Dump::Streamer -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Data::Dump::Streamer (); diff --git a/lib/Devel/REPL/Plugin/DumpHistory.pm b/lib/Devel/REPL/Plugin/DumpHistory.pm index 001695b..33409cd 100644 --- a/lib/Devel/REPL/Plugin/DumpHistory.pm +++ b/lib/Devel/REPL/Plugin/DumpHistory.pm @@ -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.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/FancyPrompt.pm b/lib/Devel/REPL/Plugin/FancyPrompt.pm index 3f1a253..08c6d64 100644 --- a/lib/Devel/REPL/Plugin/FancyPrompt.pm +++ b/lib/Devel/REPL/Plugin/FancyPrompt.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::FancyPrompt; # ABSTRACT: Facilitate user-defined prompts -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/FindVariable.pm b/lib/Devel/REPL/Plugin/FindVariable.pm index c424f86..737618d 100644 --- a/lib/Devel/REPL/Plugin/FindVariable.pm +++ b/lib/Devel/REPL/Plugin/FindVariable.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::FindVariable; # ABSTRACT: Finds variables by name -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/History.pm b/lib/Devel/REPL/Plugin/History.pm index e44bc7f..47a499c 100644 --- a/lib/Devel/REPL/Plugin/History.pm +++ b/lib/Devel/REPL/Plugin/History.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::History; # ABSTRACT: Keep track of all input, provide shortcuts !1, !-1 -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/Interrupt.pm b/lib/Devel/REPL/Plugin/Interrupt.pm index 2fb0ba6..381f690 100644 --- a/lib/Devel/REPL/Plugin/Interrupt.pm +++ b/lib/Devel/REPL/Plugin/Interrupt.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::Interrupt; # ABSTRACT: Traps SIGINT to kill long-running lines -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Sys::SigAction qw(set_sig_handler); diff --git a/lib/Devel/REPL/Plugin/LexEnv.pm b/lib/Devel/REPL/Plugin/LexEnv.pm index d3bd464..aada760 100644 --- a/lib/Devel/REPL/Plugin/LexEnv.pm +++ b/lib/Devel/REPL/Plugin/LexEnv.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::LexEnv; # ABSTRACT: Provide a lexical environment for the REPL -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/MultiLine/PPI.pm b/lib/Devel/REPL/Plugin/MultiLine/PPI.pm index 9421ee0..0dff9ef 100644 --- a/lib/Devel/REPL/Plugin/MultiLine/PPI.pm +++ b/lib/Devel/REPL/Plugin/MultiLine/PPI.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::MultiLine::PPI; # ABSTRACT: Read lines until all blocks are closed -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use PPI; diff --git a/lib/Devel/REPL/Plugin/Nopaste.pm b/lib/Devel/REPL/Plugin/Nopaste.pm index 39e4e23..fe35ca8 100644 --- a/lib/Devel/REPL/Plugin/Nopaste.pm +++ b/lib/Devel/REPL/Plugin/Nopaste.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::Nopaste; # ABSTRACT: #nopaste to upload session's input and output -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Moose::Util::TypeConstraints 'enum'; diff --git a/lib/Devel/REPL/Plugin/OutputCache.pm b/lib/Devel/REPL/Plugin/OutputCache.pm index c404553..ba8434c 100644 --- a/lib/Devel/REPL/Plugin/OutputCache.pm +++ b/lib/Devel/REPL/Plugin/OutputCache.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::OutputCache; # ABSTRACT: Remember past results, _ is most recent -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/PPI.pm b/lib/Devel/REPL/Plugin/PPI.pm index 34d0c84..e32c3bd 100644 --- a/lib/Devel/REPL/Plugin/PPI.pm +++ b/lib/Devel/REPL/Plugin/PPI.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::PPI; # ABSTRACT: PPI dumping of Perl code -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use PPI; diff --git a/lib/Devel/REPL/Plugin/Packages.pm b/lib/Devel/REPL/Plugin/Packages.pm index bbaa352..708b1f6 100644 --- a/lib/Devel/REPL/Plugin/Packages.pm +++ b/lib/Devel/REPL/Plugin/Packages.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::Packages; # ABSTRACT: Keep track of which package the user is in -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/Peek.pm b/lib/Devel/REPL/Plugin/Peek.pm index b4ad6cf..fbc57db 100644 --- a/lib/Devel/REPL/Plugin/Peek.pm +++ b/lib/Devel/REPL/Plugin/Peek.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::Peek; # ABSTRACT: L plugin for L. -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Devel::Peek qw(Dump); diff --git a/lib/Devel/REPL/Plugin/ReadLineHistory.pm b/lib/Devel/REPL/Plugin/ReadLineHistory.pm index 4960c62..6e2bf94 100644 --- a/lib/Devel/REPL/Plugin/ReadLineHistory.pm +++ b/lib/Devel/REPL/Plugin/ReadLineHistory.pm @@ -8,7 +8,7 @@ use warnings; package Devel::REPL::Plugin::ReadLineHistory; # ABSTRACT: Integrate history with the facilities provided by L -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use File::HomeDir; diff --git a/lib/Devel/REPL/Plugin/Refresh.pm b/lib/Devel/REPL/Plugin/Refresh.pm index 6544ad7..5b467e6 100644 --- a/lib/Devel/REPL/Plugin/Refresh.pm +++ b/lib/Devel/REPL/Plugin/Refresh.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::Refresh; # ABSTRACT: Reload libraries with Module::Refresh -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/ShowClass.pm b/lib/Devel/REPL/Plugin/ShowClass.pm index 335cbc6..5b80d3c 100644 --- a/lib/Devel/REPL/Plugin/ShowClass.pm +++ b/lib/Devel/REPL/Plugin/ShowClass.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::ShowClass; # ABSTRACT: Dump classes initialized with Class::MOP -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/Timing.pm b/lib/Devel/REPL/Plugin/Timing.pm index 1d15717..a9a3ccc 100644 --- a/lib/Devel/REPL/Plugin/Timing.pm +++ b/lib/Devel/REPL/Plugin/Timing.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::Timing; # ABSTRACT: Display execution times -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Time::HiRes 'time'; diff --git a/lib/Devel/REPL/Plugin/Turtles.pm b/lib/Devel/REPL/Plugin/Turtles.pm index 325d3ba..26d988e 100644 --- a/lib/Devel/REPL/Plugin/Turtles.pm +++ b/lib/Devel/REPL/Plugin/Turtles.pm @@ -3,7 +3,7 @@ use warnings; package Devel::REPL::Plugin::Turtles; # ABSTRACT: Generic command creation using a read hook -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Devel::REPL::Plugin; use Scalar::Util qw(reftype); diff --git a/lib/Devel/REPL/Profile.pm b/lib/Devel/REPL/Profile.pm index f441022..0d4bb72 100644 --- a/lib/Devel/REPL/Profile.pm +++ b/lib/Devel/REPL/Profile.pm @@ -1,7 +1,7 @@ package Devel::REPL::Profile; # ABSTRACT: Code to execute when re.pl starts -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Moose::Role; requires 'apply_profile'; diff --git a/lib/Devel/REPL/Profile/Default.pm b/lib/Devel/REPL/Profile/Default.pm index 2baf93e..1c66955 100644 --- a/lib/Devel/REPL/Profile/Default.pm +++ b/lib/Devel/REPL/Profile/Default.pm @@ -1,6 +1,6 @@ package Devel::REPL::Profile::Default; -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Moose; use namespace::autoclean; diff --git a/lib/Devel/REPL/Profile/Minimal.pm b/lib/Devel/REPL/Profile/Minimal.pm index 0a819b0..53f8443 100644 --- a/lib/Devel/REPL/Profile/Minimal.pm +++ b/lib/Devel/REPL/Profile/Minimal.pm @@ -1,6 +1,6 @@ package Devel::REPL::Profile::Minimal; -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Moose; use namespace::autoclean; diff --git a/lib/Devel/REPL/Profile/Standard.pm b/lib/Devel/REPL/Profile/Standard.pm index 938ac60..d2c5067 100644 --- a/lib/Devel/REPL/Profile/Standard.pm +++ b/lib/Devel/REPL/Profile/Standard.pm @@ -1,6 +1,6 @@ package Devel::REPL::Profile::Standard; -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Moose; use namespace::autoclean; diff --git a/lib/Devel/REPL/Script.pm b/lib/Devel/REPL/Script.pm index 6a96ada..6277632 100644 --- a/lib/Devel/REPL/Script.pm +++ b/lib/Devel/REPL/Script.pm @@ -1,6 +1,6 @@ package Devel::REPL::Script; -our $VERSION = '1.003028'; +our $VERSION = '1.003029'; use Moose; use Devel::REPL;