The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
= version 0.08 (Apr 10, 2007)
* fixed the failing tests on ubuntu linux.
* fixed some typos in the POD.

= version 0.07 (Nov 5, 2006)
* updated the POD to refect recent changes.

= version 0.06 (Nov 5, 2006)
* added long option versions for existing single-char options.
  (for example, added `--size` for `-s`, and `--pattern` for `-p`.)
* multiple `-M` options are now supported.
* sub `classes_from_runtime` now supports array refs as its first argument:
    @classes = classes_from_runtime([qw(Foo::Bar Baz)], qr/blah/);
* sub `classes_from_files` now supports scalars as its first argument:
    @classes = classes_from_files('Foo.pm');
* fixed a bug in sub `classes_from_files`
  (regex patterns were not honoured at all in previous versions. sigh.)
* implemented subs `exclude_by_paths` and `grep_by_paths` in Simple.pm.
* added -E and -I options to umlclass.pl.

= version 0.05 (Nov 5, 2006)
* fixed the wrong sub prototype so as to make the second argument truly optional
  (reported by Yanick Champoux as [rt.cpan.org #22811])
* added more TODOs from Christopher.

= version 0.04 (Nov 1, 2006)
* fixed the PPI->strerr bug reported by christopher.
  it should have been PPI::Document->strerr in the source.
* added a simple SYNOPSIS to script/umlclass.pl's POD.
* added more guide to script/umlclass.pl's POD.
  (thanks christopher's questions.)

= version 0.03 (Oct 31, 2006)
* fixed the node_color bug.
* eliminated all the subroutine redefinition warnings in the test suite.
* added the `-c color` option to script/umlclass.pl

= version 0.02 (Oct 31, 2006)
* improved the POD a bit.
* resolved the @INC problem.
* made classes_from_files loads .pm files automatically.
* removed unnecessary dependencies (GraphViz and Clone) in t/FAST/lib

= version 0.01 (Oct 30, 2006)
* initial CPAN release