[libcatmandu-marc-perl] 10/208: 0.216

Jonas Smedegaard dr at jones.dk
Sat Oct 28 03:42:30 UTC 2017


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 d9a09ef8ef3cf469400f55618d84c9f0415e25fd
Author: Patrick Hochstenbach <patrick.hochstenbach at ugent.be>
Date:   Mon Jun 13 16:58:15 2016 +0200

    0.216
---
 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/MARCMaker.pm          | 2 +-
 lib/Catmandu/Exporter/MARC/MiJ.pm                | 2 +-
 lib/Catmandu/Exporter/MARC/USMARC.pm             | 2 +-
 lib/Catmandu/Exporter/MARC/XML.pm                | 2 +-
 lib/Catmandu/Fix/Bind/marc_each.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_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/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/USMARC.pm             | 2 +-
 lib/Catmandu/Importer/MARC/XML.pm                | 2 +-
 lib/Catmandu/MARC.pm                             | 2 +-
 34 files changed, 35 insertions(+), 33 deletions(-)

diff --git a/Build.PL b/Build.PL
index ebd4fa2..980ae82 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" => "0.215",
+  "dist_version" => "0.216",
   "license" => "perl",
   "module_name" => "Catmandu::MARC",
   "recursive_test_files" => 1,
diff --git a/Changes b/Changes
index 42dc894..b7a3236 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
 Revision history for Catmandu-MARC
 
 {{$NEXT}}
+
+0.216  2016-06-13 16:57:49 CEST
   - Fixed indicator-2 selection bug
   - Fixed marc_map value bug
   - Support for the value in the inline fixes
diff --git a/lib/Catmandu/Exporter/MARC.pm b/lib/Catmandu/Exporter/MARC.pm
index eafe997..569c136 100644
--- a/lib/Catmandu/Exporter/MARC.pm
+++ b/lib/Catmandu/Exporter/MARC.pm
@@ -50,7 +50,7 @@ package Catmandu::Exporter::MARC;
 use Catmandu::Sane;
 use Moo;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 has type           => (is => 'ro' , default => sub { 'XML' });
 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 0cef856..fdf65f7 100644
--- a/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm
+++ b/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm
@@ -55,7 +55,7 @@ use Catmandu::Util qw(xml_escape is_different :array :is);
 use List::Util;
 use Moo;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
 
diff --git a/lib/Catmandu/Exporter/MARC/Base.pm b/lib/Catmandu/Exporter/MARC/Base.pm
index 176dbe0..e62b79b 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 = '0.215';
+our $VERSION = '0.216';
 
 sub _raw_to_marc_record {
     my ($self,$data) = @_;
diff --git a/lib/Catmandu/Exporter/MARC/MARCMaker.pm b/lib/Catmandu/Exporter/MARC/MARCMaker.pm
index 9dc56a7..5fcb5b6 100644
--- a/lib/Catmandu/Exporter/MARC/MARCMaker.pm
+++ b/lib/Catmandu/Exporter/MARC/MARCMaker.pm
@@ -56,7 +56,7 @@ use MARC::Record;
 use MARC::Field;
 use MARC::File::MARCMaker;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
 
diff --git a/lib/Catmandu/Exporter/MARC/MiJ.pm b/lib/Catmandu/Exporter/MARC/MiJ.pm
index 80267d4..c29a3d9 100644
--- a/lib/Catmandu/Exporter/MARC/MiJ.pm
+++ b/lib/Catmandu/Exporter/MARC/MiJ.pm
@@ -56,7 +56,7 @@ use MARC::Record;
 use MARC::Field;
 use MARC::File::MiJ;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
 
diff --git a/lib/Catmandu/Exporter/MARC/USMARC.pm b/lib/Catmandu/Exporter/MARC/USMARC.pm
index 16cafa1..e7ef477 100644
--- a/lib/Catmandu/Exporter/MARC/USMARC.pm
+++ b/lib/Catmandu/Exporter/MARC/USMARC.pm
@@ -56,7 +56,7 @@ use MARC::Record;
 use MARC::Field;
 use MARC::File::USMARC;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
 
diff --git a/lib/Catmandu/Exporter/MARC/XML.pm b/lib/Catmandu/Exporter/MARC/XML.pm
index 8b6bdd1..867c751 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 = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
 
diff --git a/lib/Catmandu/Fix/Bind/marc_each.pm b/lib/Catmandu/Fix/Bind/marc_each.pm
index 36a5f9c..a307079 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 = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Fix::Bind';
 
diff --git a/lib/Catmandu/Fix/Condition/marc_match.pm b/lib/Catmandu/Fix/Condition/marc_match.pm
index 0ed4a4e..0fd1e17 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 = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Fix::Condition';
 
diff --git a/lib/Catmandu/Fix/Inline/marc_add.pm b/lib/Catmandu/Fix/Inline/marc_add.pm
index 7d972df..a1eb873 100644
--- a/lib/Catmandu/Fix/Inline/marc_add.pm
+++ b/lib/Catmandu/Fix/Inline/marc_add.pm
@@ -9,7 +9,7 @@ require Exporter;
 @EXPORT_OK = qw(marc_add);
 %EXPORT_TAGS = (all => [qw(marc_add)]);
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 sub marc_add {
     my ($data,$marc_path, at subfields) = @_;
diff --git a/lib/Catmandu/Fix/Inline/marc_map.pm b/lib/Catmandu/Fix/Inline/marc_map.pm
index 96c9494..9f54721 100644
--- a/lib/Catmandu/Fix/Inline/marc_map.pm
+++ b/lib/Catmandu/Fix/Inline/marc_map.pm
@@ -62,7 +62,7 @@ require Exporter;
 @EXPORT_OK = qw(marc_map);
 %EXPORT_TAGS = (all => [qw(marc_map)]);
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 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 9d04b3f..1d6a841 100644
--- a/lib/Catmandu/Fix/Inline/marc_remove.pm
+++ b/lib/Catmandu/Fix/Inline/marc_remove.pm
@@ -8,7 +8,7 @@ require Exporter;
 @EXPORT_OK = qw(marc_remove);
 %EXPORT_TAGS = (all => [qw(marc_remove)]);
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 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 5783a0b..6e820a1 100644
--- a/lib/Catmandu/Fix/Inline/marc_set.pm
+++ b/lib/Catmandu/Fix/Inline/marc_set.pm
@@ -9,7 +9,7 @@ require Exporter;
 @EXPORT_OK = qw(marc_set);
 %EXPORT_TAGS = (all => [qw(marc_set)]);
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 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 bbc36de..959fd71 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 = '0.215';
+our $VERSION = '0.216';
 
 has marc_tag    => (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 7923178..3ab67db 100644
--- a/lib/Catmandu/Fix/marc_decode_dollar_subfields.pm
+++ b/lib/Catmandu/Fix/marc_decode_dollar_subfields.pm
@@ -3,7 +3,7 @@ package Catmandu::Fix::marc_decode_dollar_subfields;
 use Moo;
 use Data::Dumper;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 sub fix {
 	my ($self,$data) = @_;
diff --git a/lib/Catmandu/Fix/marc_in_json.pm b/lib/Catmandu/Fix/marc_in_json.pm
index 3fc45fd..4b0a2b5 100644
--- a/lib/Catmandu/Fix/marc_in_json.pm
+++ b/lib/Catmandu/Fix/marc_in_json.pm
@@ -5,7 +5,7 @@ use Catmandu::Util qw(:is);
 use Moo;
 use Catmandu::Fix::Has;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 has record  => (fix_opt => 1);
 has reverse => (fix_opt => 1);
diff --git a/lib/Catmandu/Fix/marc_map.pm b/lib/Catmandu/Fix/marc_map.pm
index b2c514f..41c85bf 100644
--- a/lib/Catmandu/Fix/marc_map.pm
+++ b/lib/Catmandu/Fix/marc_map.pm
@@ -5,7 +5,7 @@ use Carp qw(confess);
 use Moo;
 use Catmandu::Fix::Has;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 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 9a97d96..be36f81 100644
--- a/lib/Catmandu/Fix/marc_remove.pm
+++ b/lib/Catmandu/Fix/marc_remove.pm
@@ -5,7 +5,7 @@ use Carp qw(confess);
 use Moo;
 use Catmandu::Fix::Has;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 has marc_path => (fix_arg => 1);
 has record    => (fix_opt => 1);
diff --git a/lib/Catmandu/Fix/marc_set.pm b/lib/Catmandu/Fix/marc_set.pm
index 6aeed4c..28f8f85 100644
--- a/lib/Catmandu/Fix/marc_set.pm
+++ b/lib/Catmandu/Fix/marc_set.pm
@@ -6,7 +6,7 @@ use Carp qw(confess);
 use Moo;
 use Catmandu::Fix::Has;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 has marc_path      => (fix_arg => 1);
 has value          => (fix_arg => 1);
diff --git a/lib/Catmandu/Fix/marc_xml.pm b/lib/Catmandu/Fix/marc_xml.pm
index 24a097c..a28e1d7 100644
--- a/lib/Catmandu/Fix/marc_xml.pm
+++ b/lib/Catmandu/Fix/marc_xml.pm
@@ -7,7 +7,7 @@ use Catmandu::Exporter::MARC::XML;
 use Catmandu::Util qw(:is :data);
 use Catmandu::Fix::Has;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 has path  => (fix_arg => 1);
 
diff --git a/lib/Catmandu/Importer/MARC.pm b/lib/Catmandu/Importer/MARC.pm
index 1bded29..e9eca02 100644
--- a/lib/Catmandu/Importer/MARC.pm
+++ b/lib/Catmandu/Importer/MARC.pm
@@ -116,7 +116,7 @@ use Catmandu::Sane;
 use Catmandu::Util;
 use Moo;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 has type           => (is => 'ro' , default => sub { 'USMARC' });
 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 141fe2b..3fdc12b 100644
--- a/lib/Catmandu/Importer/MARC/ALEPHSEQ.pm
+++ b/lib/Catmandu/Importer/MARC/ALEPHSEQ.pm
@@ -47,7 +47,7 @@ package Catmandu::Importer::MARC::ALEPHSEQ;
 use Catmandu::Sane;
 use Moo;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/Decoder.pm b/lib/Catmandu/Importer/MARC/Decoder.pm
index f78808d..b4d2d2c 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 = '0.215';
+our $VERSION = '0.216';
 
 sub decode {
     my ($self, $record, $id) = @_;
diff --git a/lib/Catmandu/Importer/MARC/Lint.pm b/lib/Catmandu/Importer/MARC/Lint.pm
index 33f1aa9..70f8279 100644
--- a/lib/Catmandu/Importer/MARC/Lint.pm
+++ b/lib/Catmandu/Importer/MARC/Lint.pm
@@ -64,7 +64,7 @@ use MARC::File::USMARC;
 use MARC::Lint;
 use Catmandu::Importer::MARC::Decoder;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/MARCMaker.pm b/lib/Catmandu/Importer/MARC/MARCMaker.pm
index 95899bf..8c78187 100644
--- a/lib/Catmandu/Importer/MARC/MARCMaker.pm
+++ b/lib/Catmandu/Importer/MARC/MARCMaker.pm
@@ -54,7 +54,7 @@ use Moo;
 use MARC::File::MARCMaker;
 use Catmandu::Importer::MARC::Decoder;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/MiJ.pm b/lib/Catmandu/Importer/MARC/MiJ.pm
index c2e1c1a..75ccf99 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 = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/MicroLIF.pm b/lib/Catmandu/Importer/MARC/MicroLIF.pm
index 09e4951..db68d31 100644
--- a/lib/Catmandu/Importer/MARC/MicroLIF.pm
+++ b/lib/Catmandu/Importer/MARC/MicroLIF.pm
@@ -54,7 +54,7 @@ use Moo;
 use MARC::File::MicroLIF;
 use Catmandu::Importer::MARC::Decoder;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/RAW.pm b/lib/Catmandu/Importer/MARC/RAW.pm
index 5c089c9..69a0f7a 100644
--- a/lib/Catmandu/Importer/MARC/RAW.pm
+++ b/lib/Catmandu/Importer/MARC/RAW.pm
@@ -53,7 +53,7 @@ use Catmandu::Sane;
 use Moo;
 use MARC::Parser::RAW;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/Record.pm b/lib/Catmandu/Importer/MARC/Record.pm
index a2138b8..b594e8e 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 = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/USMARC.pm b/lib/Catmandu/Importer/MARC/USMARC.pm
index 19cc195..77bf553 100644
--- a/lib/Catmandu/Importer/MARC/USMARC.pm
+++ b/lib/Catmandu/Importer/MARC/USMARC.pm
@@ -53,7 +53,7 @@ use Catmandu::Sane;
 use Moo;
 use MARC::File::USMARC;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/XML.pm b/lib/Catmandu/Importer/MARC/XML.pm
index 8a74cd6..be2af22 100644
--- a/lib/Catmandu/Importer/MARC/XML.pm
+++ b/lib/Catmandu/Importer/MARC/XML.pm
@@ -54,7 +54,7 @@ use Moo;
 use Catmandu::Importer::MARC::Decoder;
 use MARC::File::XML (BinaryEncoding => 'UTF-8', DefaultEncoding => 'UTF-8', RecordFormat => 'MARC21');
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/MARC.pm b/lib/Catmandu/MARC.pm
index 435531c..0f92e3c 100644
--- a/lib/Catmandu/MARC.pm
+++ b/lib/Catmandu/MARC.pm
@@ -3,7 +3,7 @@ package Catmandu::MARC;
 use Catmandu::Util;
 use Catmandu::Exporter::MARC::XML;
 
-our $VERSION = '0.215';
+our $VERSION = '0.216';
 
 sub marc_add {
     my ($data,$marc_tag,$subfield_array) = @_;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libcatmandu-marc-perl.git



More information about the Pkg-perl-cvs-commits mailing list