bump version for release, and fix changelog entries v1.003015
Karen Etheridge [Fri, 1 Mar 2013 18:26:27 +0000 (10:26 -0800)]
Changes
lib/Devel/REPL.pm

diff --git a/Changes b/Changes
index 259c0cf..0b96bf7 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,12 +1,16 @@
+Revision history for Devel-REPL
+
+1.003015 - 2013-03-01
+  - fix "Attempt to use reference as lvalue in substr" warning on perl 5.16
+    (thanks, ilmari!)
+  - plugins that are used by the default profile now default to being
+    installed, fixing RT#83669 and RT#83677
+
 1.003014 - 2012-10-31
   - now using native Moose attribute traits, instead of the deprecated
     MooseX::AttributeHelper (thanks, Justin Hunter!)
   - now using namespace::autoclean rather than namespace::clean (thanks, Karen
     Etheridge!)
-  - fix "Attempt to use reference as lvalue in substr" warning on perl 5.16
-    (thanks, ilmari!)
-  - plugins that are used by the default profile now default to being
-    installed, fixing RT#83669 and RT#83677
 
 1.003013
   - Make Sys::SigAction optional dependency for Win32 systems
index 73a0feb..516330e 100644 (file)
@@ -5,7 +5,7 @@ use Moose;
 use namespace::autoclean;
 use 5.008001; # backwards compat, doesn't warn like 5.8.1
 
-our $VERSION = '1.003014';
+our $VERSION = '1.003015';
 
 with 'MooseX::Object::Pluggable';