The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
0.08 2013-12-04
  - Changed resolution from microsecond to nanosecond
  - Implemented ->with_nanosecond()
  - Documentation improvements
  - Changed ->strftime() to preserve the SvUTF8 flag if the given format 
    string has the SvUTF8 flag.
  - Overhauled strftime() conversion specifications to better confirm to 
    IEEE Std 1003.1. Extended conversion specifications is now documented 
    as such.

0.07 2013-12-02
  - Documented most of the API.
  - Implemented ->to_string().
  - Changed stringification to only include fractional seconds in output 
    if present.

0.06 2013-11-31
  - Added more docs.

0.05 2013-11-30
  - Renamed internal variable pow10 to prevent symbol clashes

0.04 2013-11-30
  - Added accessor for week of the year, ->week
  - Implemented support for parsing of any ISO 8601 date and time of day
    in both extended and basic format. For example:
        - 0001-01-01T00:00:00Z  (Calender date, extended format)
        - 00010101T000000Z      (Calender date, basic format)
        - 0001-W01-1T00:00:00Z  (Week date, extended format)
        - 0001W011T000000Z      (Week date, basic format)
        - 0001-001T00:00:00Z    (Ordinal date, extended format)
        - 0001001T000000Z       (Ordinal date, basic format)
  - Added localtime() and POSIX::strftime() to benchmark, invoking 
    Time::Moment->now is ~ 70% faster than invoking localtime().

0.03 2013-11-28
  - Renamed variable 'sun' to 'sunday' to prevent conflict on Solaris 
    operating system which defines a macro named 'sun'. (leont++)

0.02 2013-11-25
  - Implemented ->from_string() in C
  - Implemented ->now() in C if the system supports gettimeofday(2)
  - Added dev/sizeof.pl
  - Added Time::Piece to dev/bench.pl

0.01 2013-11-24
  - Initial CPAN preview release.