This is an automated email from the git hooks/post-receive script. js pushed a commit to annotated tag upstream/1.19 in repository libcatmandu-marc-perl.
commit 4cd86ecaba8579d53609096dfd7b7fc8670a142b Author: Patrick Hochstenbach <[email protected]> Date: Tue May 2 11:49:01 2017 +0200 1.10 --- Build.PL | 2 +- Changes | 2 ++ lib/Catmandu/Exporter/MARC.pm | 2 +- lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm | 2 +- lib/Catmandu/Exporter/MARC/Base.pm | 2 +- lib/Catmandu/Exporter/MARC/ISO.pm | 2 +- lib/Catmandu/Exporter/MARC/MARCMaker.pm | 2 +- lib/Catmandu/Exporter/MARC/MiJ.pm | 2 +- lib/Catmandu/Exporter/MARC/XML.pm | 2 +- lib/Catmandu/Fix/Bind/marc_each.pm | 2 +- lib/Catmandu/Fix/Condition/marc_has.pm | 2 +- lib/Catmandu/Fix/Condition/marc_has_many.pm | 2 +- lib/Catmandu/Fix/Condition/marc_match.pm | 2 +- lib/Catmandu/Fix/Inline/marc_add.pm | 2 +- lib/Catmandu/Fix/Inline/marc_map.pm | 2 +- lib/Catmandu/Fix/Inline/marc_remove.pm | 2 +- lib/Catmandu/Fix/Inline/marc_set.pm | 2 +- lib/Catmandu/Fix/marc_add.pm | 2 +- lib/Catmandu/Fix/marc_decode_dollar_subfields.pm | 2 +- lib/Catmandu/Fix/marc_in_json.pm | 2 +- lib/Catmandu/Fix/marc_map.pm | 2 +- lib/Catmandu/Fix/marc_remove.pm | 2 +- lib/Catmandu/Fix/marc_set.pm | 2 +- lib/Catmandu/Fix/marc_spec.pm | 2 +- lib/Catmandu/Fix/marc_xml.pm | 2 +- lib/Catmandu/Importer/MARC.pm | 2 +- lib/Catmandu/Importer/MARC/ALEPHSEQ.pm | 2 +- lib/Catmandu/Importer/MARC/Decoder.pm | 2 +- lib/Catmandu/Importer/MARC/ISO.pm | 2 +- lib/Catmandu/Importer/MARC/Lint.pm | 2 +- lib/Catmandu/Importer/MARC/MARCMaker.pm | 2 +- lib/Catmandu/Importer/MARC/MiJ.pm | 2 +- lib/Catmandu/Importer/MARC/MicroLIF.pm | 2 +- lib/Catmandu/Importer/MARC/RAW.pm | 2 +- lib/Catmandu/Importer/MARC/Record.pm | 2 +- lib/Catmandu/Importer/MARC/XML.pm | 2 +- lib/Catmandu/MARC.pm | 2 +- 37 files changed, 38 insertions(+), 36 deletions(-) diff --git a/Build.PL b/Build.PL index 9da982e..9800983 100644 --- a/Build.PL +++ b/Build.PL @@ -18,7 +18,7 @@ my %module_build_args = ( "Patrick Hochstenbach, C<< <patrick.hochstenbach at ugent.be> >>" ], "dist_name" => "Catmandu-MARC", - "dist_version" => "1.09", + "dist_version" => "1.10", "license" => "perl", "module_name" => "Catmandu::MARC", "recursive_test_files" => 1, diff --git a/Changes b/Changes index 41febde..3c05fed 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Catmandu-MARC {{$NEXT}} + +1.10 2017-05-02 11:48:37 CEST - Adding support for nested_arrays and subspecs in marc_spec 1.09 2017-03-27 11:29:28 CEST diff --git a/lib/Catmandu/Exporter/MARC.pm b/lib/Catmandu/Exporter/MARC.pm index 9e33e82..e807379 100644 --- a/lib/Catmandu/Exporter/MARC.pm +++ b/lib/Catmandu/Exporter/MARC.pm @@ -2,7 +2,7 @@ package Catmandu::Exporter::MARC; use Catmandu::Sane; use Moo; -our $VERSION = '1.09'; +our $VERSION = '1.10'; has type => (is => 'ro' , default => sub { 'ISO' }); has _exporter => (is => 'ro' , lazy => 1 , builder => '_build_exporter' , handles => 'Catmandu::Exporter'); diff --git a/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm b/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm index aacf0ed..f98d39a 100644 --- a/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm +++ b/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm @@ -58,7 +58,7 @@ use Catmandu::Util qw(xml_escape is_different :array :is); use List::Util; use Moo; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; diff --git a/lib/Catmandu/Exporter/MARC/Base.pm b/lib/Catmandu/Exporter/MARC/Base.pm index 0944d90..1c7375a 100644 --- a/lib/Catmandu/Exporter/MARC/Base.pm +++ b/lib/Catmandu/Exporter/MARC/Base.pm @@ -3,7 +3,7 @@ use Moo::Role; use MARC::Record; use MARC::Field; -our $VERSION = '1.09'; +our $VERSION = '1.10'; sub _raw_to_marc_record { my ($self,$data) = @_; diff --git a/lib/Catmandu/Exporter/MARC/ISO.pm b/lib/Catmandu/Exporter/MARC/ISO.pm index 5707323..cce595e 100644 --- a/lib/Catmandu/Exporter/MARC/ISO.pm +++ b/lib/Catmandu/Exporter/MARC/ISO.pm @@ -60,7 +60,7 @@ use MARC::Record; use MARC::Field; use MARC::File::USMARC; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; diff --git a/lib/Catmandu/Exporter/MARC/MARCMaker.pm b/lib/Catmandu/Exporter/MARC/MARCMaker.pm index b16cd1b..c88338f 100644 --- a/lib/Catmandu/Exporter/MARC/MARCMaker.pm +++ b/lib/Catmandu/Exporter/MARC/MARCMaker.pm @@ -60,7 +60,7 @@ use MARC::Record; use MARC::Field; use MARC::File::MARCMaker; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; diff --git a/lib/Catmandu/Exporter/MARC/MiJ.pm b/lib/Catmandu/Exporter/MARC/MiJ.pm index 54328e2..4ae65bc 100644 --- a/lib/Catmandu/Exporter/MARC/MiJ.pm +++ b/lib/Catmandu/Exporter/MARC/MiJ.pm @@ -60,7 +60,7 @@ use MARC::Record; use MARC::Field; use MARC::File::MiJ; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; diff --git a/lib/Catmandu/Exporter/MARC/XML.pm b/lib/Catmandu/Exporter/MARC/XML.pm index 87b3aea..233b19a 100644 --- a/lib/Catmandu/Exporter/MARC/XML.pm +++ b/lib/Catmandu/Exporter/MARC/XML.pm @@ -3,7 +3,7 @@ use Catmandu::Sane; use Catmandu::Util qw(xml_escape is_different :array :is); use Moo; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base', 'Catmandu::Buffer'; diff --git a/lib/Catmandu/Fix/Bind/marc_each.pm b/lib/Catmandu/Fix/Bind/marc_each.pm index 1b3e270..a189d91 100644 --- a/lib/Catmandu/Fix/Bind/marc_each.pm +++ b/lib/Catmandu/Fix/Bind/marc_each.pm @@ -3,7 +3,7 @@ package Catmandu::Fix::Bind::marc_each; use Moo; use Catmandu::Util; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Fix::Bind'; diff --git a/lib/Catmandu/Fix/Condition/marc_has.pm b/lib/Catmandu/Fix/Condition/marc_has.pm index 1ef655b..4eee4f5 100644 --- a/lib/Catmandu/Fix/Condition/marc_has.pm +++ b/lib/Catmandu/Fix/Condition/marc_has.pm @@ -7,7 +7,7 @@ use Catmandu::Fix::remove_field; use Moo; use Catmandu::Fix::Has; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Fix::Condition'; diff --git a/lib/Catmandu/Fix/Condition/marc_has_many.pm b/lib/Catmandu/Fix/Condition/marc_has_many.pm index 7705a71..2affbe9 100644 --- a/lib/Catmandu/Fix/Condition/marc_has_many.pm +++ b/lib/Catmandu/Fix/Condition/marc_has_many.pm @@ -7,7 +7,7 @@ use Catmandu::Fix::remove_field; use Moo; use Catmandu::Fix::Has; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Fix::Condition'; diff --git a/lib/Catmandu/Fix/Condition/marc_match.pm b/lib/Catmandu/Fix/Condition/marc_match.pm index 684054a..280bcc8 100644 --- a/lib/Catmandu/Fix/Condition/marc_match.pm +++ b/lib/Catmandu/Fix/Condition/marc_match.pm @@ -7,7 +7,7 @@ use Catmandu::Fix::remove_field; use Moo; use Catmandu::Fix::Has; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Fix::Condition'; diff --git a/lib/Catmandu/Fix/Inline/marc_add.pm b/lib/Catmandu/Fix/Inline/marc_add.pm index aae8b5b..cd85320 100644 --- a/lib/Catmandu/Fix/Inline/marc_add.pm +++ b/lib/Catmandu/Fix/Inline/marc_add.pm @@ -7,7 +7,7 @@ require Exporter; @EXPORT_OK = qw(marc_add); %EXPORT_TAGS = (all => [qw(marc_add)]); -our $VERSION = '1.09'; +our $VERSION = '1.10'; sub marc_add { my ($data,$marc_path,@subfields) = @_; diff --git a/lib/Catmandu/Fix/Inline/marc_map.pm b/lib/Catmandu/Fix/Inline/marc_map.pm index ddaa437..d196127 100644 --- a/lib/Catmandu/Fix/Inline/marc_map.pm +++ b/lib/Catmandu/Fix/Inline/marc_map.pm @@ -65,7 +65,7 @@ require Exporter; @EXPORT_OK = qw(marc_map); %EXPORT_TAGS = (all => [qw(marc_map)]); -our $VERSION = '1.09'; +our $VERSION = '1.10'; sub marc_map { my ($data,$marc_path,%opts) = @_; diff --git a/lib/Catmandu/Fix/Inline/marc_remove.pm b/lib/Catmandu/Fix/Inline/marc_remove.pm index a9e808b..801499e 100644 --- a/lib/Catmandu/Fix/Inline/marc_remove.pm +++ b/lib/Catmandu/Fix/Inline/marc_remove.pm @@ -7,7 +7,7 @@ require Exporter; @EXPORT_OK = qw(marc_remove); %EXPORT_TAGS = (all => [qw(marc_remove)]); -our $VERSION = '1.09'; +our $VERSION = '1.10'; sub marc_remove { my ($data,$marc_path) = @_; diff --git a/lib/Catmandu/Fix/Inline/marc_set.pm b/lib/Catmandu/Fix/Inline/marc_set.pm index 9826144..003133d 100644 --- a/lib/Catmandu/Fix/Inline/marc_set.pm +++ b/lib/Catmandu/Fix/Inline/marc_set.pm @@ -7,7 +7,7 @@ require Exporter; @EXPORT_OK = qw(marc_set); %EXPORT_TAGS = (all => [qw(marc_set)]); -our $VERSION = '1.09'; +our $VERSION = '1.10'; sub marc_set { my ($data,$marc_path,$value) = @_; diff --git a/lib/Catmandu/Fix/marc_add.pm b/lib/Catmandu/Fix/marc_add.pm index f6f458c..7b54a89 100644 --- a/lib/Catmandu/Fix/marc_add.pm +++ b/lib/Catmandu/Fix/marc_add.pm @@ -7,7 +7,7 @@ use Catmandu::Fix::Has; with 'Catmandu::Fix::Inlineable'; -our $VERSION = '1.09'; +our $VERSION = '1.10'; has marc_path => (fix_arg => 1); has subfields => (fix_arg => 'collect'); diff --git a/lib/Catmandu/Fix/marc_decode_dollar_subfields.pm b/lib/Catmandu/Fix/marc_decode_dollar_subfields.pm index 4367d32..e0137e6 100644 --- a/lib/Catmandu/Fix/marc_decode_dollar_subfields.pm +++ b/lib/Catmandu/Fix/marc_decode_dollar_subfields.pm @@ -7,7 +7,7 @@ use Catmandu::Fix::Has; with 'Catmandu::Fix::Inlineable'; -our $VERSION = '1.09'; +our $VERSION = '1.10'; sub fix { my ($self,$data) = @_; diff --git a/lib/Catmandu/Fix/marc_in_json.pm b/lib/Catmandu/Fix/marc_in_json.pm index 1df707e..7fe6873 100644 --- a/lib/Catmandu/Fix/marc_in_json.pm +++ b/lib/Catmandu/Fix/marc_in_json.pm @@ -7,7 +7,7 @@ use Catmandu::Fix::Has; with 'Catmandu::Fix::Inlineable'; -our $VERSION = '1.09'; +our $VERSION = '1.10'; has reverse => (fix_opt => 1); diff --git a/lib/Catmandu/Fix/marc_map.pm b/lib/Catmandu/Fix/marc_map.pm index 6b45e44..a521eaf 100644 --- a/lib/Catmandu/Fix/marc_map.pm +++ b/lib/Catmandu/Fix/marc_map.pm @@ -7,7 +7,7 @@ use Catmandu::Fix::Has; with 'Catmandu::Fix::Base'; -our $VERSION = '1.09'; +our $VERSION = '1.10'; has marc_path => (fix_arg => 1); has path => (fix_arg => 1); diff --git a/lib/Catmandu/Fix/marc_remove.pm b/lib/Catmandu/Fix/marc_remove.pm index 1f969a1..43d5a18 100644 --- a/lib/Catmandu/Fix/marc_remove.pm +++ b/lib/Catmandu/Fix/marc_remove.pm @@ -7,7 +7,7 @@ use Catmandu::Fix::Has; with 'Catmandu::Fix::Inlineable'; -our $VERSION = '1.09'; +our $VERSION = '1.10'; has marc_path => (fix_arg => 1); diff --git a/lib/Catmandu/Fix/marc_set.pm b/lib/Catmandu/Fix/marc_set.pm index 81d3700..36d7644 100644 --- a/lib/Catmandu/Fix/marc_set.pm +++ b/lib/Catmandu/Fix/marc_set.pm @@ -7,7 +7,7 @@ use Catmandu::Fix::Has; with 'Catmandu::Fix::Inlineable'; -our $VERSION = '1.09'; +our $VERSION = '1.10'; has marc_path => (fix_arg => 1); has value => (fix_arg => 1); diff --git a/lib/Catmandu/Fix/marc_spec.pm b/lib/Catmandu/Fix/marc_spec.pm index f33067a..3465036 100644 --- a/lib/Catmandu/Fix/marc_spec.pm +++ b/lib/Catmandu/Fix/marc_spec.pm @@ -7,7 +7,7 @@ use Catmandu::Fix::Has; with 'Catmandu::Fix::Base'; -our $VERSION = '1.09'; +our $VERSION = '1.10'; has spec => ( fix_arg=> 1 ); has path => ( fix_arg=> 1 ); diff --git a/lib/Catmandu/Fix/marc_xml.pm b/lib/Catmandu/Fix/marc_xml.pm index a556fd3..5ac323d 100644 --- a/lib/Catmandu/Fix/marc_xml.pm +++ b/lib/Catmandu/Fix/marc_xml.pm @@ -7,7 +7,7 @@ use Catmandu::Fix::Has; with 'Catmandu::Fix::Inlineable'; -our $VERSION = '1.09'; +our $VERSION = '1.10'; has path => (fix_arg => 1); diff --git a/lib/Catmandu/Importer/MARC.pm b/lib/Catmandu/Importer/MARC.pm index 6097746..18c0332 100644 --- a/lib/Catmandu/Importer/MARC.pm +++ b/lib/Catmandu/Importer/MARC.pm @@ -3,7 +3,7 @@ use Catmandu::Sane; use Catmandu::Util; use Moo; -our $VERSION = '1.09'; +our $VERSION = '1.10'; has type => (is => 'ro' , default => sub { 'ISO' }); has _importer => (is => 'ro' , lazy => 1 , builder => '_build_importer' , handles => ['generator']); diff --git a/lib/Catmandu/Importer/MARC/ALEPHSEQ.pm b/lib/Catmandu/Importer/MARC/ALEPHSEQ.pm index ae46599..9b92dc2 100644 --- a/lib/Catmandu/Importer/MARC/ALEPHSEQ.pm +++ b/lib/Catmandu/Importer/MARC/ALEPHSEQ.pm @@ -64,7 +64,7 @@ package Catmandu::Importer::MARC::ALEPHSEQ; use Catmandu::Sane; use Moo; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/Decoder.pm b/lib/Catmandu/Importer/MARC/Decoder.pm index c7d54b4..e81c277 100644 --- a/lib/Catmandu/Importer/MARC/Decoder.pm +++ b/lib/Catmandu/Importer/MARC/Decoder.pm @@ -3,7 +3,7 @@ package Catmandu::Importer::MARC::Decoder; use Catmandu::Sane; use Moo; -our $VERSION = '1.09'; +our $VERSION = '1.10'; sub fake_marc_file { my ($self,$fh,$class) = @_; diff --git a/lib/Catmandu/Importer/MARC/ISO.pm b/lib/Catmandu/Importer/MARC/ISO.pm index d6e926a..2a9c050 100644 --- a/lib/Catmandu/Importer/MARC/ISO.pm +++ b/lib/Catmandu/Importer/MARC/ISO.pm @@ -70,7 +70,7 @@ use Moo; use MARC::File::USMARC; use Catmandu::Importer::MARC::Decoder; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/Lint.pm b/lib/Catmandu/Importer/MARC/Lint.pm index 3b3ed4c..9cfce9b 100644 --- a/lib/Catmandu/Importer/MARC/Lint.pm +++ b/lib/Catmandu/Importer/MARC/Lint.pm @@ -79,7 +79,7 @@ use MARC::File::USMARC; use MARC::Lint; use Catmandu::Importer::MARC::Decoder; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/MARCMaker.pm b/lib/Catmandu/Importer/MARC/MARCMaker.pm index 29f8272..1e937a6 100644 --- a/lib/Catmandu/Importer/MARC/MARCMaker.pm +++ b/lib/Catmandu/Importer/MARC/MARCMaker.pm @@ -70,7 +70,7 @@ use Moo; use MARC::File::MARCMaker; use Catmandu::Importer::MARC::Decoder; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/MiJ.pm b/lib/Catmandu/Importer/MARC/MiJ.pm index 5f1ddd5..91e1e64 100644 --- a/lib/Catmandu/Importer/MARC/MiJ.pm +++ b/lib/Catmandu/Importer/MARC/MiJ.pm @@ -55,7 +55,7 @@ use MARC::Record; use Catmandu::Importer::MARC::Decoder; use MARC::File::MiJ; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/MicroLIF.pm b/lib/Catmandu/Importer/MARC/MicroLIF.pm index 876d472..63e8dbd 100644 --- a/lib/Catmandu/Importer/MARC/MicroLIF.pm +++ b/lib/Catmandu/Importer/MARC/MicroLIF.pm @@ -70,7 +70,7 @@ use Moo; use MARC::File::MicroLIF; use Catmandu::Importer::MARC::Decoder; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/RAW.pm b/lib/Catmandu/Importer/MARC/RAW.pm index 715d576..634ec12 100644 --- a/lib/Catmandu/Importer/MARC/RAW.pm +++ b/lib/Catmandu/Importer/MARC/RAW.pm @@ -69,7 +69,7 @@ use Catmandu::Sane; use Moo; use MARC::Parser::RAW; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/Record.pm b/lib/Catmandu/Importer/MARC/Record.pm index 55298f7..4f4a131 100644 --- a/lib/Catmandu/Importer/MARC/Record.pm +++ b/lib/Catmandu/Importer/MARC/Record.pm @@ -55,7 +55,7 @@ use Catmandu::Sane; use Catmandu::Importer::MARC::Decoder; use Moo; -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/XML.pm b/lib/Catmandu/Importer/MARC/XML.pm index af6271a..7f86fe0 100644 --- a/lib/Catmandu/Importer/MARC/XML.pm +++ b/lib/Catmandu/Importer/MARC/XML.pm @@ -70,7 +70,7 @@ use Moo; use Catmandu::Importer::MARC::Decoder; use MARC::File::XML (BinaryEncoding => 'UTF-8', DefaultEncoding => 'UTF-8', RecordFormat => 'MARC21'); -our $VERSION = '1.09'; +our $VERSION = '1.10'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/MARC.pm b/lib/Catmandu/MARC.pm index 102eaf7..20d07d6 100644 --- a/lib/Catmandu/MARC.pm +++ b/lib/Catmandu/MARC.pm @@ -16,7 +16,7 @@ memoize('parse_marc_spec'); memoize('_it_subspecs'); memoize('_get_index_range'); -our $VERSION = '1.09'; +our $VERSION = '1.10'; sub marc_map { my $self = $_[0]; -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libcatmandu-marc-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
