From: oliver Date: Thu, 9 Apr 2009 21:55:20 +0000 (+0000) Subject: version bumps and Changes edit for new release X-Git-Tag: v1.003015~59 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=commitdiff_plain;h=3601a89e23470229bf89cbe942ec233acfd0e290 version bumps and Changes edit for new release git-svn-id: http://dev.catalyst.perl.org/repos/bast/trunk/Devel-REPL@5878 bd8105ee-0ff8-0310-8827-fb3f25b6796d --- diff --git a/Changes b/Changes index d1bb096..3620787 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,9 @@ -upcoming +1.3.5 + - resolve rt.cpan#43807 three Completion drivers not loading Completion plugin + - resolve rt.cpan#43808 infinite recursion on Plugin::Commands when Plugin::Packages not loaded + - resolve rt.cpan#44902 warning due to deprecated use of alias_method in Plugin.pm + - add comment formatting option to the nopaste plugin + - add #pastetitle command to Nopaste plugin - If the object we're dumping has stringification overloading, then use it directly 1.3.4 diff --git a/Makefile.PL b/Makefile.PL index 26bb211..6470b92 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -15,8 +15,8 @@ requires 'Term::ReadLine'; # rest requires 'Moose' => '0.74'; requires 'MooseX::Object::Pluggable' => '0.0009'; -requires 'MooseX::Getopt' => '0.15'; -requires 'MooseX::AttributeHelpers' => '0.14'; +requires 'MooseX::Getopt' => '0.18'; +requires 'MooseX::AttributeHelpers' => '0.16'; requires 'namespace::clean'; requires 'File::HomeDir'; requires 'Task::Weaken'; diff --git a/lib/Devel/REPL.pm b/lib/Devel/REPL.pm index b0a413f..3429104 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.003004'; # 1.3.4 +our $VERSION = '1.003005'; # 1.3.5 with 'MooseX::Object::Pluggable';