[Changes for 1.02 - 2011-04-03]
* %Preload: add all *.pl file below .../unicore for utf8.pm

[Changes for 1.01 - 2011-03-26]
* %Preload: add "unicore/version" for Unicode/UCD.pm (because it contains a call openunicode(..., "version"))

[Changes for 1.00 - 2011-02-19]
* RT #65855: Special handling for POSIX requested (Roderich Schupp) * RT #65252: Temp files left when execute fails (Roderich Schupp) * add a %Preload rule for Log::Report::Dispatcher (Roderich Schupp) cf. http://www.nntp.perl.org/group/perl.par/2011/01/msg4871.html * add %Preload rule for Date::Manip (Roderich Schupp) * speed up scanning significantly by not re-constructing regexen for every line of input and reducing the no. of sub calls (Steffen Mueller) * add Eric Roode to AUTHORS (Steffen Mueller) * RT #61027: "use lib" does not work (Roderich Schupp) scan_line(): When handling "use lib '/some/dir'" we add "/some/dir/ARCHNAME", "/some/dir/VER" and "/some/dir/VER/ARCHNAME", but forgot to add "/some/dir" itself.
While we're at it, improve parsing the argument list of "use lib". Simply eval the string, this should at least make all forms of quoted strings work correctly.
* fix URI special case (clkao)
* fix a regression reported by CPAN Testers (Roderich Schupp) * finally: bump version to 1.00

[Changes for 0.98 - 2010-07-26]
* Make %Preload entry for "utf8.pm" lazy (Roderich Schupp) * Upgrade to Module::Install 1.00 (Roderich Schupp) * RT #58093: Par-Packer not including all dependencies (unicore/Heavy.pl) (Roderich Schupp) * Add %Preload rule for RPC::XML (Roderich Schupp) * RT #57494: add %Preload rule for JSON.pm (Roderich Schupp)

[Changes for 0.97 - 2010-04-10]
* Pack the content of module/distribution sharedirs is automatically. (kmx) * RT #56020 - add data files used by Unicode::UCD (Roderich Schupp) * RT #55746 - remove bogus "... if %Config::Config" condition (Roderich Schupp) * Add special case for CGI::Application::Plugin::AutoRunmode (Alexandr Ciornii) * Add special case for CGI::Application::Plugin::Authentication (Alexandr Ciornii) * Add special case for DBIx::Perlish (Alexandr Ciornii)

[Changes for 0.96 - 2009-11-13]
* perl 5.6.1 compatibility (Alexandr Ciornii) * Test for "use module version;" (Alexandr Ciornii)

[Changes for 0.95 - 2009-10-16]
* Fix "uninitialized value" warnings (Dave Rolsky) * Add special case for Perl::Critic (Alexandr Ciornii) * Add special case for Event (Alexandr Ciornii) * Add special case for Wx.pm (Alexandr Ciornii) * Add special case for Log::Any

[Changes for 0.94 - 2009-08-10]
* Add tests for scan_line (Alexandr Ciornii) * RT#48151 fixed, "require __PACKAGE__" should not die (Alexandr Ciornii) * OS/2 fixes (Ilya Zakharevich)

[Changes for 0.93 - 2009-07-19]
* Implement caching of dependencies (Christoph Lamprecht)

[Changes for 0.92 - 2009-07-19]
* Fix bug with {type} being set to unexpected values in some cases (Christoph Lamprecht) * Add tests for scan_chunk (Alexandr Ciornii) * Add special case for parent.pm (Alexandr Ciornii) * Fix for "use parent::something" (Alexandr Ciornii) * Add special case for Catalyst.pm (Alexandr Ciornii)

[Changes for 0.91 - 2009-06-22]
* Add special case for Tk's setPalette call (Christoph Lamprecht)

[Changes for 0.90 - 2009-05-09]
* Add special case for DateTime::Locale * Add special case for PAR::Repository and PAR::Repository::Client

[Changes for 0.89 - 2008-11-03]
* Distribution fixes.
* Do not use base Exporter.
* Detection of 'asa' and 'only::matching'.

[Changes for 0.88 - 2008-10-28]
* Add special case for File::HomeDir.

[Changes for 0.87 - 2008-10-28]
* Add special case for PPI.

[Changes for 0.86 - 2008-10-23]
* Fix the 'use prefork "Foo"' static detection. * Fix the detection of any of the module-loader modules such as prefork, autouse, etc. if invoked as 'use prefork"Foo"' (note the lack of a space).
* Slightly refactor the loader-module scanning. (see above) * Support for "use maybe 'foo';"
* Use (arch|priv)libexp instead of (arch|priv)lib in scandeps.pl (Mark Stosberg)
* Update to Module::Install 0.77

[Changes for 0.85 - 2008-08-01]
* Add special case for Net::Server.

[Changes for 0.84 - 2008-05-13]
* Add special case for Class::MethodMaker.

[Changes for 0.83 - 2008-03-23]
* Add special case for Image::ExifTool.

[Changes for 0.82 - 2008-01-08]
* Add Test::More to build requirements (Alexandr Ciornii) * Add dependency on version.pm
* Now correctly identifies feature.pm as a dependency if "use 5.10.0;" (and up) is found.

[Changes for 0.81 - 2007-12-07]
* Fix for the case-insensitive-file-system-test.

[Changes for 0.80 - 2007-11-30]
* Fix to avoid duplicated entries arising from used_by references with case differences.
* Do not report input files themselves as dependencies. (Regression from 0.74 onwards)
* Remove warning from ScanFileRE tests.

[Changes for 0.78 - 2007-11-17]
* Fix ScanFileRE heuristics to allow for scanning files without suffixes.

[Changes for 0.77 - 2007-09-20]
* Add support for prefork.pm (similar to how base.pm is detected). * Added uses field to hash descriptions returned by scan_deps + tests (Adrian Issott)
* Added ScanFileRE to restrict the files scanned to .pl, .pm, .al and .t but allow the user to override + tests (Adrian Issott)

[Changes for 0.76 - 2007-07-21]
* Fix special case for Term::ReadLine (should not rope in Tk) * New special case for Tcl::Tk (should not rope in Tk either!) * New special case for threads::shared ==> rope in attributes.pm * Fix to avoid duplicated entries that can arise due to case differences that don't actually matter on case-tolerant systems (Adrian Issott)
* M::SD warnings now go to STDERR not STDOUT (Adrian Issott) * Fixed bug #24162: scandeps.(bat|pl) doesn't correctly identify Core Modules on Windows (Adrian Issott)
* Now finds shared libraries for modules specified as input files. * Tests for finding shared libraries.

[Changes for 0.75 - 2007-06-24]
* Fix special cases for POE. (Roderich Schupp) * Added exported path_to_inc_name subroutine (Adrian Issott) * Added Module::Build::ModuleInfo dependency (Adrian Issott) * Fixed bug where input files weren't scoped properly * Add new "check-for-dynaloader" test. (Eric Wilhelm)

[Changes for 0.74 - 2007-04-26]
* Same as 0.73_01, but not a developer release.

[Changes for 0.73_01 - 2007-03-28]
* Fixed bug "scan_deps doesn't show ALL the dependencies" * Ensured all file entries are given by absolute paths * Added a number of test artificial dependency trees as test data mainly for "scan_deps doesn't show ALL the dependencies" bug * Added tests for scandeps recurse option (all pass) * Added tests for scandeps skip option (all pass) * Added tests to show a duplicated dependency is in fact only shown once (all pass)
* Added Utils.pm test module containing generic_scandeps_rv_test and compare_scandeps_rvs subroutines (Adrian Issott)

[Changes for 0.73 - 2007-03-25]
* Now being a little cleverer for detecting globs in diamond operators. (Requiring a meta character within the <>.)

[Changes for 0.72 - 2007-02-03]
* Case-insensitive @INC removal for case-insensitive filesystems (Eric Wilhelm)

[Changes for 0.71 - 2007-01-04]
* Added special cases for
Catalyst
Class::MakeMethods
Config::Any
DBIx::Class
Email::Send
Log::Log4perl
SQL::Translator
* print() the "# Legend..." line instead of warn()ing it.

[Changes for 0.70 - 2006-11-21]
* Added special case for Image::Info.

[Changes for 0.69 - 2006-11-07]
* Additional corner cases for LWP::UserAgent and LWP::Parallel::UserAgent and friends.

[Changes for 0.68 - 2006-10-25]
* Added special case for PerlIO.pm. If PerlIO.pm is needed, require PerlIO::scalar, too, because it can be used "under the hood". (Roderich Schupp)
* Added some File::Spec'ness. (Steffen Mueller) * Refactored the %Preload mapping code into getpreload so that the PAR -M %Preload fix would work. (Steffen Mueller)

[Changes for 0.67 - 2006-10-24]
* Added @IncludeLibs which is used alongside @INC for searching modules. (David Romano)
* Won't pick up Tk as a dependency for Term::ReadLine any more. You can stop laughing now!

[Changes for 0.66 - 2006-09-24]
* Fixed another bug in Module::ScanDeps::Datafeed which would break run- and compile-time dependency scanners if $ENV{PERL5LIB} entries had trailing backslashes. Thanks to Steven Mackenzie for pointing this out.
* Added some documentation and comments to M::SD::Datafeed for the sake of future maintainers.

[Changes for 0.65 - 2006-09-24]
* Fixed bug in Module::ScanDeps::Datafeed which would die() in 0.64.

[Changes for 0.64 - 2006-09-22]
* Upgraded to Module::Install 0.64
* Added warning of missing modules when -V is in effect (scandeps.pl). * Added warning of missing modules if "warn_missing=>1" specified as an option to scan_deps.

[Changes for 0.63 - 2006-08-27]
* Upgraded to Module::Install 0.63

[Changes for 0.62 - 2006-07-16]

[Changes for 0.61 - 2006-06-30]

[Changes for 0.60 - 2006-05-23]

[Changes for 0.59 - 2006-05-03]

[Changes for 0.58 - 2006-04-16]

[Changes for 0.57 - 2006-03-03]

[Changes for 0.56 - 2006-02-20]

[Changes for 0.55 - 2006-02-17]

[Changes for 0.54 - 2006-01-11]

[Changes for 0.53 - 2006-01-10]

[Changes for 0.52 - 2005-12-12]

[Changes for 0.51 - 2005-01-08]

[Changes for 0.50 - 2004-10-03]

[Changes for 0.49 - 2004-09-26]

[Changes for 0.48 - 2004-09-07]

[Changes for 0.47 - 2004-09-07]

[Changes for 0.46 - 2004-07-02]

[Changes for 0.44 - 2004-06-08]

[Changes for 0.43 - 2004-06-02]

[Changes for 0.42 - 2004-04-30]

[Changes for 0.41 - 2004-04-18]

[Changes for 0.40 - 2004-02-23]

[Changes for 0.39 - 2004-01-25]

[Changes for 0.38 - 2004-01-08]

[Changes for 0.37 - 2003-12-31]

[Changes for 0.36 - 2003-12-31]

[Changes for 0.35 - 2003-12-31]

[Changes for 0.34 - 2003-12-30]

[Changes for 0.33 - 2003-12-21]

[Changes for 0.32 - 2003-10-26]

[Changes for 0.31 - 2003-10-17]

[Changes for 0.30 - 2003-09-20]

[Changes for 0.29 - 2003-09-17]

[Changes for 0.28 - 2003-08-17]

[Changes for 0.27 - 2003-08-16]

[Changes for 0.26 - 2003-08-11]

[Changes for 0.25 - 2003-08-10]

[Changes for 0.24 - 2003-08-10]

[Changes for 0.23 - 2003-08-08]

[Changes for 0.22 - 2003-08-07]

[Changes for 0.21 - 2003-07-30]

[Changes for 0.19 - 2003-03-22]

[Changes for 0.18 - 2003-03-20]

[Changes for 0.14 - 2003-01-19]

[Changes for 0.13 - 2003-01-18]

[Changes for 0.12 - 2003-01-18]

[Changes for 0.10 - 2002-11-04]

[Changes for 0.03 - 2002-11-03]

[Changes for 0.02 - 2002-11-02]