version bumps and Changes edit for new release
oliver [Thu, 9 Apr 2009 21:55:20 +0000 (21:55 +0000)]
git-svn-id: http://dev.catalyst.perl.org/repos/bast/trunk/Devel-REPL@5878 bd8105ee-0ff8-0310-8827-fb3f25b6796d

Changes
Makefile.PL
lib/Devel/REPL.pm

diff --git a/Changes b/Changes
index d1bb096..3620787 100644 (file)
--- 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
index 26bb211..6470b92 100644 (file)
@@ -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';
index b0a413f..3429104 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.003004'; # 1.3.4
+our $VERSION = '1.003005'; # 1.3.5
 
 with 'MooseX::Object::Pluggable';