From: Stevan Little Date: Thu, 5 Apr 2007 23:08:57 +0000 (+0000) Subject: bumping version and adding changelog X-Git-Tag: 0_21~26 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=93c435b33aa55c4b629a36eb163cb2d12dd04292;p=gitmo%2FMoose.git bumping version and adding changelog --- diff --git a/Changes b/Changes index 2246443..36abd82 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Revision history for Perl extension Moose +0.20 + * Moose + - 'has' now also accepts an ARRAY ref + to create multiple attrs (see docs) + (thanks to konobi for this) + - added tests and docs + 0.19 Thurs. April 5th, 2007 ~~ More documentation updates ~~ diff --git a/README b/README index b7bcdec..522f817 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Moose version 0.19 +Moose version 0.20 =========================== See the individual module documentation for more information diff --git a/lib/Moose.pm b/lib/Moose.pm index 23f8b5b..0d58601 100644 --- a/lib/Moose.pm +++ b/lib/Moose.pm @@ -4,7 +4,7 @@ package Moose; use strict; use warnings; -our $VERSION = '0.19'; +our $VERSION = '0.20'; our $AUTHORITY = 'cpan:STEVAN'; use Scalar::Util 'blessed', 'reftype';