Skip to content

Commit

Permalink
CPAN release 3.13005
Browse files Browse the repository at this point in the history
  • Loading branch information
semifor committed Jun 19, 2010
1 parent 4d91985 commit 5666152
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions 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

Expand Down
2 changes: 1 addition & 1 deletion README
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Identica.pm
Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Twitter.pm
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Twitter/Core.pm
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Twitter/OAuth.pm
Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Twitter/Search.pm
Expand Up @@ -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';
Expand Down
4 changes: 2 additions & 2 deletions t/51_since.t
Expand Up @@ -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';
Expand Down

0 comments on commit 5666152

Please sign in to comment.