diff --git a/Changes b/Changes index d6f7260..608668c 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Changes for Perl extension DateTime-Tiny {{$NEXT}} + +1.06 2016-06-23 09:43:41-04:00 America/New_York - No changes from 1.05 1.05 2016-06-20 11:05:35-04:00 America/New_York (TRIAL RELEASE) diff --git a/Makefile.PL b/Makefile.PL index 9923ffa..4a21a44 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -26,7 +26,7 @@ my %WriteMakefileArgs = ( "File::Spec" => 0, "Test::More" => 0 }, - "VERSION" => "1.06", + "VERSION" => "1.07", "test" => { "TESTS" => "t/*.t" } diff --git a/lib/DateTime/Tiny.pm b/lib/DateTime/Tiny.pm index de993fd..645244e 100644 --- a/lib/DateTime/Tiny.pm +++ b/lib/DateTime/Tiny.pm @@ -3,7 +3,7 @@ use warnings; package DateTime::Tiny; # ABSTRACT: A date object, with as little code as possible -our $VERSION = '1.06'; +our $VERSION = '1.07'; use overload 'bool' => sub () { 1 }; use overload '""' => 'as_string';