Skip to content

Commit

Permalink
release 1.009000
Browse files Browse the repository at this point in the history
  • Loading branch information
mickeyn committed Jan 11, 2015
1 parent 8dcb402 commit b0e9a18
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,6 +1,6 @@
Revision history for MetaCPAN-Client (previously MetaCPAN-API)

1.009000 -
1.009000 11.01.15
* GH #25 (RT #99499): added support for 'fields' filtering (mickeyn, oalders)

1.008001 01.01.15
Expand Down
18 changes: 17 additions & 1 deletion README.pod
Expand Up @@ -8,7 +8,7 @@ MetaCPAN::Client - A comprehensive, DWIM-featured client to the MetaCPAN API

=head1 VERSION

version 1.008001
version 1.009000

=head1 SYNOPSIS

Expand Down Expand Up @@ -162,6 +162,22 @@ Retrieve all matches for authors/modules/distributions or releases.

Internal construction wrapper. Do not use.

=head1 SEARCH PARAMS

Most searches take params as an optional hash-ref argument.
these params will be passed to the search action.

In non-scrolled searches, 'fields' filter is the only supported
parameter ATM.

=head2 fields

Filter the fields to reduce the amount of data pulled from MetaCPAN.
can be passed as a csv list or an array ref.

my $module = $mcpan->module('Moose', { fields => "version,author" });
my $module = $mcpan->module('Moose', { fields => [qw/version author/] });

=head1 SEARCH SPEC

The hash-based search spec is common to many searches. It is quite
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 = 2015

version = 1.008001
version = 1.009000

[@Basic]
[PodSyntaxTests]
Expand Down

0 comments on commit b0e9a18

Please sign in to comment.