From: Vincent Pit Date: Sun, 29 Jul 2012 19:16:01 +0000 (+0200) Subject: Bump version to 1.0.10 and update Changes X-Git-Tag: release_1.0.10^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FModule-Metadata.git;a=commitdiff_plain;h=02f819d95af6eb2d5937ecbacdea638395850eaa Bump version to 1.0.10 and update Changes --- diff --git a/Changes b/Changes index 168647d..3199560 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,9 @@ +1.0.10 2012-07-29 19:30:00 + - Performance improvement: the creation of a Module::Metadata object + for a typical module file has been sped up by about 40% (VPIT) + - Fix t/metadata.t failure under Cygwin (JDHEDDEN) + - Portability fix-ups for new_from_module() and test failures on VMS (CBERRY) + 1.0.9 2012-02-08 12:00:00 - API of 'provides' changed to require a 'version' argument to future proof the function against CPAN Meta Spec changes (DAGOLDEN) diff --git a/lib/Module/Metadata.pm b/lib/Module/Metadata.pm index 104c41c..ce21787 100644 --- a/lib/Module/Metadata.pm +++ b/lib/Module/Metadata.pm @@ -11,7 +11,7 @@ package Module::Metadata; use strict; use vars qw($VERSION); -$VERSION = '1.000009'; +$VERSION = '1.000010'; $VERSION = eval $VERSION; use Carp qw/croak/;