keep $VERSION right in the repo
Karen Etheridge [Sun, 16 Aug 2015 00:08:55 +0000 (17:08 -0700)]
39 files changed:
dist.ini
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

index f258306..4403265 100644 (file)
--- a/dist.ini
+++ b/dist.ini
@@ -13,7 +13,7 @@ skip = Devel/REPL/Plugin/CompletionDriver/
 [PodVersion]
 
 [@Author::ETHER]
-:version = 0.076
+:version = 0.086
 -remove = PodWeaver
 server = p5sagit
 installer = MakeMaker   ; Module::Build::Tiny cannot handle dynamic_config => 1
index 951404b..e4e7e79 100644 (file)
@@ -1,5 +1,7 @@
 package Devel::REPL;
 
+our $VERSION = '1.003027';
+
 use Term::ReadLine;
 use Moose;
 use namespace::autoclean;
index 82a6815..0ad9513 100644 (file)
@@ -1,5 +1,7 @@
 package Devel::REPL::Error;
 
+our $VERSION = '1.003027';
+
 use Moose;
 use namespace::autoclean;
 
index e08726e..241478b 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Meta::Plugin;
 
+our $VERSION = '1.003027';
+
 use Moose;
 use namespace::autoclean;
 
index e1a6d8d..f4b5db9 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Meta::Plugin;
 use Moose::Role ();
 use namespace::autoclean;
index 50625e6..5d9a4b5 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::B::Concise;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use B::Concise 0.62 ();
 use namespace::autoclean;
index 5d209c7..a90e30f 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::Colors;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Term::ANSIColor;
 use namespace::autoclean;
index 5cf0893..961dbf0 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::Commands;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Scalar::Util qw(weaken);
 use namespace::autoclean;
index de8b5fc..17e391a 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::Completion;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Scalar::Util 'weaken';
 use PPI;
index 8d075d1..7599d2b 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::CompletionDriver::Globals;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
 use namespace::autoclean;
index bf4e6c3..debab15 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::CompletionDriver::INC;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
 use File::Next;
index d451b2e..90eb43d 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::CompletionDriver::Keywords;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
 use B::Keywords qw/@Functions @Barewords/;
index a31abf4..dd833bc 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::CompletionDriver::LexEnv;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
 use namespace::autoclean;
index eff0cb9..837d1bf 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::CompletionDriver::Methods;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
 use namespace::autoclean;
index 316157d..abdd761 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::CompletionDriver::Turtles;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Devel::REPL::Plugin::Completion;    # die early if cannot load
 use namespace::autoclean;
index 97f3239..4d5e8e4 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::DDC;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Data::Dumper::Concise ();
 use namespace::autoclean;
index ee60a84..171802b 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::DDS;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Data::Dump::Streamer ();
 use namespace::autoclean;
index c1d449d..d9c9170 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::DumpHistory;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use namespace::autoclean;
 
index 957b9c6..f6e98f5 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::FancyPrompt;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use namespace::autoclean;
 
index 1a2b14f..e4a1680 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::FindVariable;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use namespace::autoclean;
 
index 9d4bc84..c3e63c0 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::History;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use namespace::autoclean;
 
index 1b2551e..27ea599 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::Interrupt;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Sys::SigAction qw(set_sig_handler);
 use namespace::autoclean;
index 2bb1319..fd72a36 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::LexEnv;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use namespace::autoclean;
 use Lexical::Persistence;
index d6e53be..8f58d61 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::MultiLine::PPI;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use PPI;
 use namespace::autoclean;
index c3183c6..353ec2b 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::Nopaste;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Moose::Util::TypeConstraints 'enum';
 use namespace::autoclean;
index 4115fa8..886bf96 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::OutputCache;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use namespace::autoclean;
 
index 2a18ff4..44aedb2 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::PPI;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use PPI;
 use PPI::Dumper;
index a7e13fe..a19e277 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::Packages;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use namespace::autoclean;
 
index f52eb31..ba0cea3 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::Peek;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Devel::Peek qw(Dump);
 use namespace::autoclean;
index 3fb9c9d..bd75cb4 100644 (file)
@@ -7,6 +7,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::ReadLineHistory;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use File::HomeDir;
 use File::Spec;
index f3a10bd..0b18fed 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::Refresh;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use namespace::autoclean;
 use Module::Refresh;
index 990aaa0..093f8fb 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::ShowClass;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use namespace::autoclean;
 
index 7cae485..7a55ef2 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::Timing;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Time::HiRes 'time';
 use namespace::autoclean;
index a908c8f..49c6eaf 100644 (file)
@@ -2,6 +2,8 @@ use strict;
 use warnings;
 package Devel::REPL::Plugin::Turtles;
 
+our $VERSION = '1.003027';
+
 use Devel::REPL::Plugin;
 use Scalar::Util qw(reftype);
 use namespace::autoclean;
index 9f17dde..4605b31 100644 (file)
@@ -1,5 +1,7 @@
 package Devel::REPL::Profile;
 
+our $VERSION = '1.003027';
+
 use Moose::Role;
 requires 'apply_profile';
 use namespace::autoclean;
index 05f4547..55d2e05 100644 (file)
@@ -1,5 +1,7 @@
 package Devel::REPL::Profile::Default;
 
+our $VERSION = '1.003027';
+
 use Moose;
 use namespace::autoclean;
 
index 6740fbe..4e745aa 100644 (file)
@@ -1,5 +1,7 @@
 package Devel::REPL::Profile::Minimal;
 
+our $VERSION = '1.003027';
+
 use Moose;
 use namespace::autoclean;
 
index 29028f5..3948d6b 100644 (file)
@@ -1,5 +1,7 @@
 package Devel::REPL::Profile::Standard;
 
+our $VERSION = '1.003027';
+
 use Moose;
 use namespace::autoclean;
 
index fb1e953..2b19440 100644 (file)
@@ -1,5 +1,7 @@
 package Devel::REPL::Script;
 
+our $VERSION = '1.003027';
+
 use Moose;
 use Devel::REPL;
 use File::HomeDir;