- fix up Class::XSAccessor version check to be more robust
- improved documentation
- fix failures on perls < 5.8.3
+ - fix test failures on cygwin
0.009012 - 2011-11-15
- make Method::Generate::Constructor handle $obj->new
'Expected exception thrown on old perls'
);
}
+elsif ($^O eq 'cygwin' and $] < 5.012000) {
+ SKIP: { skip 'Static coderef reaping seems nonfunctional on cygwin < 5.12', 1 }
+}
else {
is(${$foo_ro->one},'yay', 'value present');
ok(Scalar::Util::isweak($foo_ro->{one}), 'value weakened');