diff --git a/CHANGES b/CHANGES index dc01e21..9dac7b9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +2.03 Ignore nanoseconds to account for DateTime->now() not returning + nanoseconds and therefore erroneously determining that a timestamp + created with nanoseconds occurred in the future when it's just more + accurate + 2.02 Add support for Postgres TIMEZONE WITH TIMESTAMP type dates 2.01 Remove spurious use of Test::MockTime from test suite diff --git a/META.yml b/META.yml index 0cfdf5c..7ce34aa 100644 --- a/META.yml +++ b/META.yml @@ -34,4 +34,4 @@ resources: type: git url: git://github.com/2shortplanks/Test-Recent.git web: https://github.com/2shortplanks/Test-Recent/tree -version: 2.02 +version: 2.03 diff --git a/lib/Test/Recent.pm b/lib/Test/Recent.pm index 51b2807..fe5a7d7 100644 --- a/lib/Test/Recent.pm +++ b/lib/Test/Recent.pm @@ -13,7 +13,7 @@ use Scalar::Util qw(blessed); use vars qw(@EXPORT_OK $VERSION $OverridedNowForTesting); -$VERSION = "2.02"; +$VERSION = "2.03"; my $tester = Test::Builder->new();