Changes for Devel-Declare
+ - Depend on B::Hooks::OP::Check version 0.19, which fixes a serious bug in
+ how it interacts with other modules that hook ops.
+
0.006006 - 23 Aug 2011
- Increase default linestr size to avoid reallocations (Zefram).
all_from 'lib/Devel/Declare.pm';
requires 'Scalar::Util' => 1.11; # set_prototype appeared in this version
-requires 'B::Hooks::OP::Check' => '0.18';
+requires 'B::Hooks::OP::Check' => '0.19';
requires 'B::Hooks::EndOfScope' => '0.05';
requires 'Sub::Name';
-build_requires 'B::Hooks::OP::Check' => '0.18';
+build_requires 'B::Hooks::OP::Check' => '0.19';
# minimum version that works on Win32+gcc
configure_requires 'ExtUtils::Depends' => 0.302;
# minimum version that depends on ExtUtils::Depends 0.302
-configure_requires 'B::Hooks::OP::Check' => '0.18';
+configure_requires 'B::Hooks::OP::Check' => '0.19';
test_requires 'Test::More' => '0.88';
test_requires 'Test::Warn';
use vars qw(%declarators %declarator_handlers @ISA);
use base qw(DynaLoader);
use Scalar::Util 'set_prototype';
-use B::Hooks::OP::Check;
+use B::Hooks::OP::Check 0.19;
bootstrap Devel::Declare;