Explicitly require Role::Tiny in Role::Tiny::With (RT#70446)
Peter Rabbitson [Fri, 23 Dec 2011 15:09:06 +0000 (16:09 +0100)]
Changes
lib/Role/Tiny/With.pm

diff --git a/Changes b/Changes
index 01d5a6b..ba4b3c5 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+  - Explicitly require Role::Tiny in Role::Tiny::With (RT#70446)
+
 0.009013 - 2011-12-23
   - fix up Class::XSAccessor version check to be more robust
   - improved documentation
index 29b46d2..4b568ea 100644 (file)
@@ -2,6 +2,7 @@ package Role::Tiny::With;
 
 use strict;
 use warnings FATAL => 'all';
+use Role::Tiny ();
 
 use Exporter 'import';
 our @EXPORT = qw( with );