bump version
[gitmo/Role-Tiny.git] / lib / Role / Tiny / With.pm
index 4b568ea..7075b75 100644 (file)
@@ -2,6 +2,10 @@ package Role::Tiny::With;
 
 use strict;
 use warnings FATAL => 'all';
+
+our $VERSION = '1.003003';
+$VERSION = eval $VERSION;
+
 use Role::Tiny ();
 
 use Exporter 'import';
@@ -9,7 +13,7 @@ our @EXPORT = qw( with );
 
 sub with {
     my $target = caller;
-    Role::Tiny->apply_role_to_package($target, @_)
+    Role::Tiny->apply_roles_to_package($target, @_)
 }
 
 1;
@@ -35,11 +39,11 @@ provides a C<with> function to compose such roles.
 
 =head1 AUTHORS
 
-See L<Moo> for authors.
+See L<Role::Tiny> for authors.
 
 =head1 COPYRIGHT AND LICENSE
 
-See L<Moo> for the copyright and license.
+See L<Role::Tiny> for the copyright and license.
 
 =cut