resolve rt.cpan#43109 Missing deps for Default Profile Plugins
oliver [Sun, 15 Feb 2009 11:15:54 +0000 (11:15 +0000)]
git-svn-id: http://dev.catalyst.perl.org/repos/bast/trunk/Devel-REPL@5473 bd8105ee-0ff8-0310-8827-fb3f25b6796d

Changes
Makefile.PL
lib/Devel/REPL.pm

diff --git a/Changes b/Changes
index 069f24a..20f8a58 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+1.3.4
+  - resolve rt.cpan#43109 Missing deps for Default Profile Plugins
 1.3.3
   - make Nopaste attribute lazy
   - make ReadLineHistory history file location portable
index 2ea7a6c..a2b36d8 100644 (file)
@@ -25,11 +25,11 @@ requires 'Term::ANSIColor';
 requires 'Devel::Peek';
 
 feature 'Completion plugin - extensible tab completion',
-    -default => 0,
+    -default => 1,
     'PPI' => 0;
 
 feature 'DDS plugin - better format results with Data::Dump::Streamer',
-    -default => 0,
+    -default => 1,
     'Data::Dump::Streamer' => 0;
 
 feature 'INC completion driver - tab complete module names in use and require',
@@ -41,11 +41,11 @@ feature 'Keywords completion driver - tab complete Perl keywords and operators',
     'B::Keywords' => 0;
 
 feature 'LexEnv plugin - variables declared with "my" persist between statements',
-    -default => 0,
+    -default => 1,
     'Lexical::Persistence' => 0;
 
 feature 'MultiLine::PPI plugin - continue reading lines until all blocks are closed',
-    -default => 0,
+    -default => 1,
     'PPI' => 0;
 
 feature 'Nopaste plugin - upload a session\'s input and output to a Pastebin',
@@ -53,7 +53,7 @@ feature 'Nopaste plugin - upload a session\'s input and output to a Pastebin',
     'App::Nopaste' => 0;
 
 feature 'PPI plugin - PPI dumping of Perl code',
-    -default => 0,
+    -default => 1,
     'PPI' => 0;
 
 feature 'Refresh plugin - automatically reload libraries with Module::Refresh',
index 4561ce9..1c6c3ab 100644 (file)
@@ -5,7 +5,7 @@ use Moose;
 use namespace::clean -except => [ 'meta' ];
 use 5.008001; # backwards compat, doesn't warn like 5.8.1
 
-our $VERSION = '1.003003'; # 1.3.3
+our $VERSION = '1.003004'; # 1.3.4
 
 with 'MooseX::Object::Pluggable';