Checking in changes prior to tagging of version 0.36. Changelog diff is:
[gitmo/Mouse.git] / lib / Mouse.pm
index c07b200..69c012f 100644 (file)
@@ -4,9 +4,9 @@ use 5.006_002;
 use strict;
 use warnings;
 
-use base 'Exporter';
+our $VERSION = '0.36';
 
-our $VERSION = '0.33_01';
+use Exporter;
 
 use Carp 'confess';
 use Scalar::Util 'blessed';
@@ -20,6 +20,8 @@ use Mouse::Meta::Attribute;
 use Mouse::Object;
 use Mouse::Util::TypeConstraints ();
 
+our @ISA = qw(Exporter);
+
 our @EXPORT = qw(
     extends with
     has