[Bast-commits] r5473 - in trunk/Devel-REPL: . lib/Devel

oliver at dev.catalyst.perl.org oliver at dev.catalyst.perl.org
Sun Feb 15 11:15:54 GMT 2009


Author: oliver
Date: 2009-02-15 11:15:54 +0000 (Sun, 15 Feb 2009)
New Revision: 5473

Modified:
   trunk/Devel-REPL/Changes
   trunk/Devel-REPL/Makefile.PL
   trunk/Devel-REPL/lib/Devel/REPL.pm
Log:
resolve rt.cpan#43109 Missing deps for Default Profile Plugins

Modified: trunk/Devel-REPL/Changes
===================================================================
--- trunk/Devel-REPL/Changes	2009-02-15 00:45:44 UTC (rev 5472)
+++ trunk/Devel-REPL/Changes	2009-02-15 11:15:54 UTC (rev 5473)
@@ -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

Modified: trunk/Devel-REPL/Makefile.PL
===================================================================
--- trunk/Devel-REPL/Makefile.PL	2009-02-15 00:45:44 UTC (rev 5472)
+++ trunk/Devel-REPL/Makefile.PL	2009-02-15 11:15:54 UTC (rev 5473)
@@ -25,11 +25,11 @@
 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 @@
     '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 @@
     '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',

Modified: trunk/Devel-REPL/lib/Devel/REPL.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL.pm	2009-02-15 00:45:44 UTC (rev 5472)
+++ trunk/Devel-REPL/lib/Devel/REPL.pm	2009-02-15 11:15:54 UTC (rev 5473)
@@ -5,7 +5,7 @@
 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';
 




More information about the Bast-commits mailing list