bumping version and adding changelog
Stevan Little [Thu, 5 Apr 2007 23:08:57 +0000 (23:08 +0000)]
Changes
README
lib/Moose.pm

diff --git a/Changes b/Changes
index 2246443..36abd82 100644 (file)
--- 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 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Moose version 0.19
+Moose version 0.20
 ===========================
 
 See the individual module documentation for more information
index 23f8b5b..0d58601 100644 (file)
@@ -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';