From: Karen Etheridge Date: Sun, 16 Aug 2015 00:08:55 +0000 (-0700) Subject: keep $VERSION right in the repo X-Git-Tag: v1.003027~10 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=commitdiff_plain;h=54beb05dd302b5e166bf46c888318527e13375c7 keep $VERSION right in the repo --- diff --git a/dist.ini b/dist.ini index f258306..4403265 100644 --- 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 diff --git a/lib/Devel/REPL.pm b/lib/Devel/REPL.pm index 951404b..e4e7e79 100644 --- a/lib/Devel/REPL.pm +++ b/lib/Devel/REPL.pm @@ -1,5 +1,7 @@ package Devel::REPL; +our $VERSION = '1.003027'; + use Term::ReadLine; use Moose; use namespace::autoclean; diff --git a/lib/Devel/REPL/Error.pm b/lib/Devel/REPL/Error.pm index 82a6815..0ad9513 100644 --- a/lib/Devel/REPL/Error.pm +++ b/lib/Devel/REPL/Error.pm @@ -1,5 +1,7 @@ package Devel::REPL::Error; +our $VERSION = '1.003027'; + use Moose; use namespace::autoclean; diff --git a/lib/Devel/REPL/Meta/Plugin.pm b/lib/Devel/REPL/Meta/Plugin.pm index e08726e..241478b 100644 --- a/lib/Devel/REPL/Meta/Plugin.pm +++ b/lib/Devel/REPL/Meta/Plugin.pm @@ -2,6 +2,8 @@ use strict; use warnings; package Devel::REPL::Meta::Plugin; +our $VERSION = '1.003027'; + use Moose; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin.pm b/lib/Devel/REPL/Plugin.pm index e1a6d8d..f4b5db9 100644 --- a/lib/Devel/REPL/Plugin.pm +++ b/lib/Devel/REPL/Plugin.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/B/Concise.pm b/lib/Devel/REPL/Plugin/B/Concise.pm index 50625e6..5d9a4b5 100644 --- a/lib/Devel/REPL/Plugin/B/Concise.pm +++ b/lib/Devel/REPL/Plugin/B/Concise.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/Colors.pm b/lib/Devel/REPL/Plugin/Colors.pm index 5d209c7..a90e30f 100644 --- a/lib/Devel/REPL/Plugin/Colors.pm +++ b/lib/Devel/REPL/Plugin/Colors.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/Commands.pm b/lib/Devel/REPL/Plugin/Commands.pm index 5cf0893..961dbf0 100644 --- a/lib/Devel/REPL/Plugin/Commands.pm +++ b/lib/Devel/REPL/Plugin/Commands.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/Completion.pm b/lib/Devel/REPL/Plugin/Completion.pm index de8b5fc..17e391a 100644 --- a/lib/Devel/REPL/Plugin/Completion.pm +++ b/lib/Devel/REPL/Plugin/Completion.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm b/lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm index 8d075d1..7599d2b 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm b/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm index bf4e6c3..debab15 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/INC.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm b/lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm index d451b2e..90eb43d 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm @@ -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/; diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm b/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm index a31abf4..dd833bc 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm b/lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm index eff0cb9..837d1bf 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm b/lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm index 316157d..abdd761 100644 --- a/lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm +++ b/lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/DDC.pm b/lib/Devel/REPL/Plugin/DDC.pm index 97f3239..4d5e8e4 100644 --- a/lib/Devel/REPL/Plugin/DDC.pm +++ b/lib/Devel/REPL/Plugin/DDC.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/DDS.pm b/lib/Devel/REPL/Plugin/DDS.pm index ee60a84..171802b 100644 --- a/lib/Devel/REPL/Plugin/DDS.pm +++ b/lib/Devel/REPL/Plugin/DDS.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/DumpHistory.pm b/lib/Devel/REPL/Plugin/DumpHistory.pm index c1d449d..d9c9170 100644 --- a/lib/Devel/REPL/Plugin/DumpHistory.pm +++ b/lib/Devel/REPL/Plugin/DumpHistory.pm @@ -2,6 +2,8 @@ use strict; use warnings; package Devel::REPL::Plugin::DumpHistory; +our $VERSION = '1.003027'; + use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/FancyPrompt.pm b/lib/Devel/REPL/Plugin/FancyPrompt.pm index 957b9c6..f6e98f5 100644 --- a/lib/Devel/REPL/Plugin/FancyPrompt.pm +++ b/lib/Devel/REPL/Plugin/FancyPrompt.pm @@ -2,6 +2,8 @@ use strict; use warnings; package Devel::REPL::Plugin::FancyPrompt; +our $VERSION = '1.003027'; + use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/FindVariable.pm b/lib/Devel/REPL/Plugin/FindVariable.pm index 1a2b14f..e4a1680 100644 --- a/lib/Devel/REPL/Plugin/FindVariable.pm +++ b/lib/Devel/REPL/Plugin/FindVariable.pm @@ -2,6 +2,8 @@ use strict; use warnings; package Devel::REPL::Plugin::FindVariable; +our $VERSION = '1.003027'; + use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/History.pm b/lib/Devel/REPL/Plugin/History.pm index 9d4bc84..c3e63c0 100644 --- a/lib/Devel/REPL/Plugin/History.pm +++ b/lib/Devel/REPL/Plugin/History.pm @@ -2,6 +2,8 @@ use strict; use warnings; package Devel::REPL::Plugin::History; +our $VERSION = '1.003027'; + use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/Interrupt.pm b/lib/Devel/REPL/Plugin/Interrupt.pm index 1b2551e..27ea599 100644 --- a/lib/Devel/REPL/Plugin/Interrupt.pm +++ b/lib/Devel/REPL/Plugin/Interrupt.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/LexEnv.pm b/lib/Devel/REPL/Plugin/LexEnv.pm index 2bb1319..fd72a36 100644 --- a/lib/Devel/REPL/Plugin/LexEnv.pm +++ b/lib/Devel/REPL/Plugin/LexEnv.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/MultiLine/PPI.pm b/lib/Devel/REPL/Plugin/MultiLine/PPI.pm index d6e53be..8f58d61 100644 --- a/lib/Devel/REPL/Plugin/MultiLine/PPI.pm +++ b/lib/Devel/REPL/Plugin/MultiLine/PPI.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/Nopaste.pm b/lib/Devel/REPL/Plugin/Nopaste.pm index c3183c6..353ec2b 100644 --- a/lib/Devel/REPL/Plugin/Nopaste.pm +++ b/lib/Devel/REPL/Plugin/Nopaste.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/OutputCache.pm b/lib/Devel/REPL/Plugin/OutputCache.pm index 4115fa8..886bf96 100644 --- a/lib/Devel/REPL/Plugin/OutputCache.pm +++ b/lib/Devel/REPL/Plugin/OutputCache.pm @@ -2,6 +2,8 @@ use strict; use warnings; package Devel::REPL::Plugin::OutputCache; +our $VERSION = '1.003027'; + use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/PPI.pm b/lib/Devel/REPL/Plugin/PPI.pm index 2a18ff4..44aedb2 100644 --- a/lib/Devel/REPL/Plugin/PPI.pm +++ b/lib/Devel/REPL/Plugin/PPI.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/Packages.pm b/lib/Devel/REPL/Plugin/Packages.pm index a7e13fe..a19e277 100644 --- a/lib/Devel/REPL/Plugin/Packages.pm +++ b/lib/Devel/REPL/Plugin/Packages.pm @@ -2,6 +2,8 @@ use strict; use warnings; package Devel::REPL::Plugin::Packages; +our $VERSION = '1.003027'; + use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/Peek.pm b/lib/Devel/REPL/Plugin/Peek.pm index f52eb31..ba0cea3 100644 --- a/lib/Devel/REPL/Plugin/Peek.pm +++ b/lib/Devel/REPL/Plugin/Peek.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/ReadLineHistory.pm b/lib/Devel/REPL/Plugin/ReadLineHistory.pm index 3fb9c9d..bd75cb4 100644 --- a/lib/Devel/REPL/Plugin/ReadLineHistory.pm +++ b/lib/Devel/REPL/Plugin/ReadLineHistory.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/Refresh.pm b/lib/Devel/REPL/Plugin/Refresh.pm index f3a10bd..0b18fed 100644 --- a/lib/Devel/REPL/Plugin/Refresh.pm +++ b/lib/Devel/REPL/Plugin/Refresh.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/ShowClass.pm b/lib/Devel/REPL/Plugin/ShowClass.pm index 990aaa0..093f8fb 100644 --- a/lib/Devel/REPL/Plugin/ShowClass.pm +++ b/lib/Devel/REPL/Plugin/ShowClass.pm @@ -2,6 +2,8 @@ use strict; use warnings; package Devel::REPL::Plugin::ShowClass; +our $VERSION = '1.003027'; + use Devel::REPL::Plugin; use namespace::autoclean; diff --git a/lib/Devel/REPL/Plugin/Timing.pm b/lib/Devel/REPL/Plugin/Timing.pm index 7cae485..7a55ef2 100644 --- a/lib/Devel/REPL/Plugin/Timing.pm +++ b/lib/Devel/REPL/Plugin/Timing.pm @@ -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; diff --git a/lib/Devel/REPL/Plugin/Turtles.pm b/lib/Devel/REPL/Plugin/Turtles.pm index a908c8f..49c6eaf 100644 --- a/lib/Devel/REPL/Plugin/Turtles.pm +++ b/lib/Devel/REPL/Plugin/Turtles.pm @@ -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; diff --git a/lib/Devel/REPL/Profile.pm b/lib/Devel/REPL/Profile.pm index 9f17dde..4605b31 100644 --- a/lib/Devel/REPL/Profile.pm +++ b/lib/Devel/REPL/Profile.pm @@ -1,5 +1,7 @@ package Devel::REPL::Profile; +our $VERSION = '1.003027'; + use Moose::Role; requires 'apply_profile'; use namespace::autoclean; diff --git a/lib/Devel/REPL/Profile/Default.pm b/lib/Devel/REPL/Profile/Default.pm index 05f4547..55d2e05 100644 --- a/lib/Devel/REPL/Profile/Default.pm +++ b/lib/Devel/REPL/Profile/Default.pm @@ -1,5 +1,7 @@ package Devel::REPL::Profile::Default; +our $VERSION = '1.003027'; + use Moose; use namespace::autoclean; diff --git a/lib/Devel/REPL/Profile/Minimal.pm b/lib/Devel/REPL/Profile/Minimal.pm index 6740fbe..4e745aa 100644 --- a/lib/Devel/REPL/Profile/Minimal.pm +++ b/lib/Devel/REPL/Profile/Minimal.pm @@ -1,5 +1,7 @@ package Devel::REPL::Profile::Minimal; +our $VERSION = '1.003027'; + use Moose; use namespace::autoclean; diff --git a/lib/Devel/REPL/Profile/Standard.pm b/lib/Devel/REPL/Profile/Standard.pm index 29028f5..3948d6b 100644 --- a/lib/Devel/REPL/Profile/Standard.pm +++ b/lib/Devel/REPL/Profile/Standard.pm @@ -1,5 +1,7 @@ package Devel::REPL::Profile::Standard; +our $VERSION = '1.003027'; + use Moose; use namespace::autoclean; diff --git a/lib/Devel/REPL/Script.pm b/lib/Devel/REPL/Script.pm index fb1e953..2b19440 100644 --- a/lib/Devel/REPL/Script.pm +++ b/lib/Devel/REPL/Script.pm @@ -1,5 +1,7 @@ package Devel::REPL::Script; +our $VERSION = '1.003027'; + use Moose; use Devel::REPL; use File::HomeDir;