Skip to content

Commit

Permalink
1.10_03
Browse files Browse the repository at this point in the history
  • Loading branch information
nics committed May 17, 2019
1 parent cd021f4 commit 67c8a1f
Show file tree
Hide file tree
Showing 206 changed files with 219 additions and 217 deletions.
6 changes: 3 additions & 3 deletions Build.PL
@@ -1,5 +1,5 @@

# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v6.008.
# This file was automatically generated by Dist::Zilla::Plugin::ModuleBuild v6.012.
use strict;
use warnings;

Expand All @@ -15,10 +15,10 @@ my %module_build_args = (
},
"dist_abstract" => "a data toolkit",
"dist_author" => [
"Nicolas Steenlant <nicolas.steenlant\@ugent.be>"
"Nicolas Steenlant, C<< <nicolas.steenlant at ugent.be> >>"
],
"dist_name" => "Catmandu",
"dist_version" => "1.10_02",
"dist_version" => "1.10_03",
"license" => "perl",
"module_name" => "Catmandu",
"recommends" => {
Expand Down
2 changes: 2 additions & 0 deletions Changes
@@ -1,6 +1,8 @@
Revision history for Catmandu

{{$NEXT}}

1.10_03 2019-05-17 10:44:49 CEST
- new cp,mv and rm shortcuts for copy_field, move_field and remove_field
- CSV exporter accepts escaped whitespace literals as sep_char just like the
TSV exporter
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Catmandu::Env;
use Catmandu::Util qw(:is);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Addable.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Addable;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Catmandu::Util qw(:is :check);
use Moo::Role;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/ArrayIterator.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::ArrayIterator;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Catmandu::Util qw(check_array_ref);
use Role::Tiny::With;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Bag.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Bag;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Catmandu::Util qw(:check is_string require_package now);
use Catmandu::Bag::IdGenerator::UUID;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Bag/IdGenerator.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Bag::IdGenerator;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo::Role;
use namespace::clean;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Bag/IdGenerator/Mock.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Bag::IdGenerator::Mock;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Data::UUID;
use Moo;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Bag/IdGenerator/UUID.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Bag::IdGenerator::UUID;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Data::UUID;
use Moo;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Buffer.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Buffer;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo::Role;
use namespace::clean;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/CLI.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::CLI;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Catmandu::Util qw(is_instance);
use Catmandu;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/CQLSearchable.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::CQLSearchable;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo::Role;
use namespace::clean;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent qw(App::Cmd::Command);
use Catmandu::Util qw(is_array_ref pod_section);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/compile.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::compile;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use Catmandu;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/config.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::config;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use Catmandu::Util::Path qw(as_path);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/convert.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::convert;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use Catmandu;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/copy.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::copy;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use Catmandu;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/count.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::count;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use Catmandu;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/delete.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::delete;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use Catmandu;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/drop.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::drop;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use Catmandu;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/export.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::export;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use Catmandu;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/help.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::help;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use App::Cmd::Command::help;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/import.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::import;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use Catmandu;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/info.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::info;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use Catmandu;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/run.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::run;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use Catmandu;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Cmd/touch.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Cmd::touch;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'Catmandu::Cmd';
use Catmandu;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Counter.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Counter;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo::Role;
use namespace::clean;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Droppable.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Droppable;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo::Role;
use namespace::clean;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Emit.pm
Expand Up @@ -3,7 +3,7 @@ package Catmandu::Emit;
# eval context ->
use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Catmandu::Util qw(:is :string require_package);
use Clone qw(clone);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Env.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Env;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Catmandu::Util qw(require_package use_lib read_yaml read_json :is :check);
use Catmandu::Fix;
Expand Down
22 changes: 11 additions & 11 deletions lib/Catmandu/Error.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Error;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo;
use namespace::clean;
Expand Down Expand Up @@ -38,7 +38,7 @@ package Catmandu::Error::Source;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo::Role;
use Catmandu::Util qw(is_string);
Expand All @@ -61,7 +61,7 @@ package Catmandu::BadVal;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo;
use namespace::clean;
Expand All @@ -72,7 +72,7 @@ package Catmandu::BadArg;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo;
use namespace::clean;
Expand All @@ -83,7 +83,7 @@ package Catmandu::NotImplemented;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo;
use namespace::clean;
Expand All @@ -94,7 +94,7 @@ package Catmandu::NoSuchPackage;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo;
use namespace::clean;
Expand Down Expand Up @@ -132,7 +132,7 @@ package Catmandu::FixParseError;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo;
use namespace::clean;
Expand All @@ -154,7 +154,7 @@ package Catmandu::NoSuchFixPackage;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo;
use namespace::clean;
Expand All @@ -178,7 +178,7 @@ package Catmandu::BadFixArg;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo;
use namespace::clean;
Expand All @@ -205,7 +205,7 @@ package Catmandu::FixError;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo;
use Data::Dumper;
Expand All @@ -232,7 +232,7 @@ package Catmandu::HTTPError;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Moo;
use Data::Dumper;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Expander.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Expander;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use parent 'CGI::Expand';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter.pm
Expand Up @@ -2,7 +2,7 @@ package Catmandu::Exporter;

use Catmandu::Sane;

our $VERSION = '1.10_02';
our $VERSION = '1.10_03';

use Catmandu::Util qw(io);
use Moo::Role;
Expand Down

0 comments on commit 67c8a1f

Please sign in to comment.