diff --git a/Changes b/Changes index fa997c8..85886df 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,4 @@ +3.13005 2010-06-18 - fixed: since (synthetic arg) filtering - fixed: don't use args for OAuth signature on multi-part mime posts diff --git a/README b/README index aba8817..7839838 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Net::Twitter - A perl interface to the Twitter API VERSION - This document describes Net::Twitter version 3.13004 + This document describes Net::Twitter version 3.13005 SYNOPSIS use Net::Twitter; diff --git a/lib/Net/Identica.pm b/lib/Net/Identica.pm index 1643d63..1ad6860 100644 --- a/lib/Net/Identica.pm +++ b/lib/Net/Identica.pm @@ -2,7 +2,7 @@ package Net::Identica; use Moose; # use *all* digits for fBSD ports -our $VERSION = '3.13004'; +our $VERSION = '3.13005'; $VERSION = eval $VERSION; # numify for warning-free dev releases extends 'Net::Twitter::Core'; diff --git a/lib/Net/Twitter.pm b/lib/Net/Twitter.pm index ac41ec2..ea6e560 100644 --- a/lib/Net/Twitter.pm +++ b/lib/Net/Twitter.pm @@ -11,7 +11,7 @@ has '_trait_namespace' => ( ); # use *all* digits for fBSD ports -our $VERSION = '3.13004'; +our $VERSION = '3.13005'; $VERSION = eval $VERSION; # numify for warning-free dev releases diff --git a/lib/Net/Twitter/Core.pm b/lib/Net/Twitter/Core.pm index 773ee21..1634d9d 100644 --- a/lib/Net/Twitter/Core.pm +++ b/lib/Net/Twitter/Core.pm @@ -17,7 +17,7 @@ use Data::Visitor::Callback; use namespace::autoclean; # use *all* digits for fBSD ports -our $VERSION = '3.13004'; +our $VERSION = '3.13005'; $VERSION = eval $VERSION; # numify for warning-free dev releases diff --git a/lib/Net/Twitter/OAuth.pm b/lib/Net/Twitter/OAuth.pm index 3c385b8..15ef4b7 100644 --- a/lib/Net/Twitter/OAuth.pm +++ b/lib/Net/Twitter/OAuth.pm @@ -2,7 +2,7 @@ package Net::Twitter::OAuth; use Moose; # use *all* digits for fBSD ports -our $VERSION = '3.13004'; +our $VERSION = '3.13005'; $VERSION = eval $VERSION; # numify for warning-free dev releases extends 'Net::Twitter::Core'; diff --git a/lib/Net/Twitter/Search.pm b/lib/Net/Twitter/Search.pm index 8b660d5..0875d85 100644 --- a/lib/Net/Twitter/Search.pm +++ b/lib/Net/Twitter/Search.pm @@ -2,7 +2,7 @@ package Net::Twitter::Search; use Moose; # use *all* digits for fBSD ports -our $VERSION = '3.13004'; +our $VERSION = '3.13005'; $VERSION = eval $VERSION; # numify for warning-free dev releases extends 'Net::Twitter::Core'; diff --git a/t/51_since.t b/t/51_since.t index 038a06a..1a04f4f 100644 --- a/t/51_since.t +++ b/t/51_since.t @@ -44,11 +44,11 @@ cmp_ok @$r, '==', 2, 'got 2 statuses'; $r = $nt->friends_timeline({ since => $dt - DateTime::Duration->new(days => 1) }); cmp_ok @$r, '==', 1, 'filtered with DateTime'; -$r = $nt->friends_timeline({ since => time - 3600*24 }); +$r = $nt->friends_timeline({ since => time - 3600*25 }); cmp_ok @$r, '==', 1, 'filtered with epoch'; $r = $nt->friends_timeline({ since => $datetime_parser->format_datetime( - $dt - DateTime::Duration->new(days => 1)) }); + $dt - DateTime::Duration->new(hours => 25)) }); cmp_ok @$r, '==', 1, 'filtered with string in Twitter timestamp format'; my $test = 'dies on invalid since';