From: Karen Etheridge Date: Fri, 1 Mar 2013 18:26:27 +0000 (-0800) Subject: bump version for release, and fix changelog entries X-Git-Tag: v1.003015^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=commitdiff_plain;h=f261e4cf59f5d02e49e7aed6244e77d2282bf3e7;hp=26d5d72e66d589309c95440fc7274aefdd0f4a86 bump version for release, and fix changelog entries --- diff --git a/Changes b/Changes index 259c0cf..0b96bf7 100644 --- 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 diff --git a/lib/Devel/REPL.pm b/lib/Devel/REPL.pm index 73a0feb..516330e 100644 --- a/lib/Devel/REPL.pm +++ b/lib/Devel/REPL.pm @@ -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';