The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
0.07
 - Add Math::LongDouble conversions(LD2cl, imag_cl2LD and real_cl2LD).
 - Alter the way that strEQ gets hold of HvNAME(SvSTASH(SvRV(sv))) - so that -Wall
    doesn't emit "null argument" warnings. (Thanks Daniel Kahn Gillmor.)
 - Add precision setting/getting functions - d_set_prec, d_get_prec, long_set_prec
   and long_get_prec. This enables control over precision presented by the various
   stringification sub routines (d_to_str, d_to_strp, ld_to_str, ld_to_strp and
   _overload_string).
 - Add to_string conversions - d_to_str, d_to_strp, ld_to_str and ld_to_strp.
 - Change the print overloading (sub _overload_string) to use the new to_string
   conversion functions. This standardises the printing of double and long double
   objects, and handles the printing in the same way as Math::LongDouble does.

0.06
 - Fix is_inf() and is_infl() in Complex_C.xs and Long.xs respectively.
  (They were reporting a NaN to be an Inf.)

0.05
 - Remove 'not' from overloads. Apparently achieved nothing anyway, and 5.16
   warns that it's invalid.
 - Devel::Peek::Dump() a couple of variables in t/arith.t, to try and see 
   why tests 10-12 fail - ie iff they fail && if Devel::Peek is available.
   (Only reported failure I know of is
   http://www.cpantesters.org/cpan/report/e8c48154-9492-11e0-9abf-e615ed0326e0.)

0.04
 - Add is_neg_zero() function. (Perl will often present '-0' as '0'.)
 - Add aab_neg_zero.t to check how the compiler deals with -0, and whether
   is_neg_zero() functions correctly.

0.03
 - Fix assign_cl - internally it was assigning a double instead of a long double.
 - Skip (rather than fail) tests that are known to be failing because
   of compiler bugs.
 - Change _overload_equiv to cater for comparison with real numbers, as
   well as complex numbers.
 - Move the files in Long/t to top-level t folder, and delete Long/t.

0.02
 - Remove Long/t/aab_basic.t. (Served no additional purpose.)
 - Add Long/Long.xs to MANIFEST.

0.01
 - First release.