Skip to content

Commit

Permalink
release 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mickeyn committed Apr 9, 2014
1 parent 6b4cf88 commit 5e0786a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.pod
Expand Up @@ -8,7 +8,7 @@ MetaCPAN::Client - A comprehensive, DWIM-featured client to the MetaCPAN API

=head1 VERSION

version 1.000001
version 1.001000

=head1 SYNOPSIS

Expand Down Expand Up @@ -135,7 +135,8 @@ Simple searches just contain keys and values:
my $author = $mcpan->author( { pauseid => 'MICKEY' } );

# find all people named Dave, not covering Davids
my @daves = $mcpan->author( { name => 'Dave *' } );
# will return a resultset
my $daves = $mcpan->author( { name => 'Dave *' } );

=head2 OR

Expand All @@ -144,7 +145,7 @@ such as "this or that", you can use the following syntax with the C<either>
key:

# any author named "Dave" or "David"
my @daves = $mcpan->author( {
my $daves = $mcpan->author( {
either => [
{ name => 'Dave *' },
{ name => 'David *' },
Expand All @@ -158,7 +159,7 @@ such as "this and that", you can use the following syntax with the C<all>
key:

# any users named 'John' with a Gmail account
my @gravatar_johns = $mcpan->author( {
my $johns = $mcpan->author( {
all => [
{ name => 'John *' },
{ email => '*gmail.com' },
Expand Down
2 changes: 1 addition & 1 deletion dist.ini
Expand Up @@ -5,7 +5,7 @@ license = Perl_5
copyright_holder = Sawyer X
copyright_year = 2014

version = 1.000001
version = 1.001000

[@Basic]
[PodSyntaxTests]
Expand Down

0 comments on commit 5e0786a

Please sign in to comment.