From: Rafael Kitover Date: Fri, 23 Apr 2010 23:29:00 +0000 (+0000) Subject: release X-Git-Tag: v0.09004~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=af169484b92883c80359dc9befa32b56f1430bbe;p=p5sagit%2FClass-Accessor-Grouped.git release --- diff --git a/Changes b/Changes index ab9d177..e3d2cc1 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Class::Accessor::Grouped. - - make the Class::XSAccessor more intelligent, add documentation +0.09003 Fri Apr 23 23:00:19 2010 + - use Class::XSAccessor if available for 'simple' accessors, except on + MSWin32, with documentation 0.09002 Tue Oct 20 23:16:28 2009 - removing Class::XSAccessor usage for now diff --git a/Makefile.PL b/Makefile.PL index 933bd8e..55af32b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -25,6 +25,8 @@ if (-e 'MANIFEST.SKIP') { system('pod2text lib/Class/Accessor/Grouped.pm > README'); } +realclean_files 'README'; + auto_provides; auto_install; diff --git a/lib/Class/Accessor/Grouped.pm b/lib/Class/Accessor/Grouped.pm index a62d12e..6cb0ddf 100644 --- a/lib/Class/Accessor/Grouped.pm +++ b/lib/Class/Accessor/Grouped.pm @@ -7,12 +7,14 @@ use Scalar::Util (); use MRO::Compat; use Sub::Name (); -our $VERSION = '0.09002'; +our $VERSION = '0.09003'; $VERSION = eval $VERSION; # Class::XSAccessor is segfaulting on win32, so be careful # Win32 users can set $hasXS to try to use it anyway + our $hasXS; + sub _hasXS { if (not defined $hasXS) { @@ -464,7 +466,7 @@ sub get_super_paths { You can speed up accessors of type 'simple' by installing L. Note however that the use of this module is disabled by default on Win32 -systems, as it causes yet untracked segfaults. If you are a Win32 user, and +systems, as it causes yet unresolved segfaults. If you are a Win32 user, and want to try this module with L, set C<$Class::Accessor::Grouped::hasXS> to a true value B registering your accessors (e.g. in a C block) @@ -480,7 +482,7 @@ Guillermo Roditi =head1 COPYRIGHT & LICENSE -Copyright (c) 2006-2009 Matt S. Trout +Copyright (c) 2006-2010 Matt S. Trout This program is free software; you can redistribute it and/or modify it under the same terms as perl itself.