From: oliver Date: Sun, 15 Feb 2009 11:15:54 +0000 (+0000) Subject: resolve rt.cpan#43109 Missing deps for Default Profile Plugins X-Git-Tag: v1.003015~68 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=commitdiff_plain;h=44e1719786d9d4384e01f659f8104baf1560b3a0 resolve rt.cpan#43109 Missing deps for Default Profile Plugins git-svn-id: http://dev.catalyst.perl.org/repos/bast/trunk/Devel-REPL@5473 bd8105ee-0ff8-0310-8827-fb3f25b6796d --- diff --git a/Changes b/Changes index 069f24a..20f8a58 100644 --- 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 diff --git a/Makefile.PL b/Makefile.PL index 2ea7a6c..a2b36d8 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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', diff --git a/lib/Devel/REPL.pm b/lib/Devel/REPL.pm index 4561ce9..1c6c3ab 100644 --- a/lib/Devel/REPL.pm +++ b/lib/Devel/REPL.pm @@ -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';