Skip to content

Commit

Permalink
1.0202
Browse files Browse the repository at this point in the history
  • Loading branch information
nics committed Mar 12, 2020
1 parent c0fa8c6 commit 8ea96b8
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ my %module_build_args = (
"=over 4"
],
"dist_name" => "Catmandu-Store-Elasticsearch",
"dist_version" => "1.0201",
"dist_version" => "1.0202",
"license" => "perl",
"module_name" => "Catmandu::Store::Elasticsearch",
"recursive_test_files" => 1,
Expand Down
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Revision history for Catmandu-Store-ElasticSearch

{{$NEXT}}

1.0202 2020-03-12 16:31:02 CET
- only add type for es 1x-2.x in reader methods

1.0201 2019-10-11 12:07:18 CEST
Expand Down
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ Catmandu::Store::ElasticSearch - A searchable store backed by Elasticsearch
use Catmandu;

my $store = Catmandu->store('ElasticSearch');
# options will be passed to the underlying Search::Elasticsearch client
my $store = Catmandu->store('ElasticSearch', nodes => ['server.example.com:9200']);

my $obj1 = $store->bag('catmandu')->add({ name => 'Patrick' });

Expand Down Expand Up @@ -92,14 +94,14 @@ Optionally provide for each bag an `on_error` error handler (See below).

This Catmandu::Store implements:

- [Catmandu::Store](https://metacpan.org/pod/Catmandu::Store)
- [Catmandu::Store](https://metacpan.org/pod/Catmandu%3A%3AStore)

Each Catmandu::Bag in this Catmandu::Store implements:

- [Catmandu::Bag](https://metacpan.org/pod/Catmandu::Bag)
- [Catmandu::Droppable](https://metacpan.org/pod/Catmandu::Droppable)
- [Catmandu::Searchable](https://metacpan.org/pod/Catmandu::Searchable)
- [Catmandu::CQLSearchable](https://metacpan.org/pod/Catmandu::CQLSearchable)
- [Catmandu::Bag](https://metacpan.org/pod/Catmandu%3A%3ABag)
- [Catmandu::Droppable](https://metacpan.org/pod/Catmandu%3A%3ADroppable)
- [Catmandu::Searchable](https://metacpan.org/pod/Catmandu%3A%3ASearchable)
- [Catmandu::CQLSearchable](https://metacpan.org/pod/Catmandu%3A%3ACQLSearchable)

# INDEX MAPPING

Expand Down Expand Up @@ -274,7 +276,7 @@ import you data again.

# SEE ALSO

[Catmandu::Store](https://metacpan.org/pod/Catmandu::Store)
[Catmandu::Store](https://metacpan.org/pod/Catmandu%3A%3AStore)

# AUTHOR

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Store/ElasticSearch.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Store::ElasticSearch;

use Catmandu::Sane;

our $VERSION = '1.0201';
our $VERSION = '1.0202';

use Search::Elasticsearch;
use Catmandu::Util qw(is_instance);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Store/ElasticSearch/Bag.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Store::ElasticSearch::Bag;

use Catmandu::Sane;

our $VERSION = '1.0201';
our $VERSION = '1.0202';

use Catmandu::Hits;
use Cpanel::JSON::XS qw(encode_json decode_json);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Store/ElasticSearch/CQL.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Store::ElasticSearch::CQL;

use Catmandu::Sane;

our $VERSION = '1.0201';
our $VERSION = '1.0202';

use Catmandu::Util qw(require_package trim);
use CQL::Parser;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Store/ElasticSearch/Searcher.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Store::ElasticSearch::Searcher;

use Catmandu::Sane;

our $VERSION = '1.0201';
our $VERSION = '1.0202';

use Moo;
use namespace::clean;
Expand Down

0 comments on commit 8ea96b8

Please sign in to comment.