[libcatmandu-marc-perl] 18/26: 1.23

Jonas Smedegaard dr at jones.dk
Tue Dec 19 12:17:05 UTC 2017


This is an automated email from the git hooks/post-receive script.

js pushed a commit to annotated tag upstream/1.23.1
in repository libcatmandu-marc-perl.

commit dcb53786cdf33a07e2d8e0b1d80325f92ee9c731
Author: Patrick Hochstenbach <patrick.hochstenbach at ugent.be>
Date:   Fri Dec 15 09:52:56 2017 +0100

    1.23
---
 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_all_match.pm     | 2 +-
 lib/Catmandu/Fix/Condition/marc_any_match.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_append.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_paste.pm                   | 2 +-
 lib/Catmandu/Fix/marc_remove.pm                  | 2 +-
 lib/Catmandu/Fix/marc_replace_all.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 +-
 42 files changed, 43 insertions(+), 41 deletions(-)

diff --git a/Build.PL b/Build.PL
index b55d24a..af1f0cc 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.22",
+  "dist_version" => "1.23",
   "license" => "perl",
   "module_name" => "Catmandu::MARC",
   "recursive_test_files" => 1,
diff --git a/Changes b/Changes
index 67b6659..72479a0 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
 Revision history for Catmandu-MARC
 
 {{$NEXT}}
+
+1.23  2017-12-15 09:52:08 CET
   - Forcing MARC::Spec 1.0.0 for now
 
 1.22  2017-12-02 10:23:48 CET
diff --git a/lib/Catmandu/Exporter/MARC.pm b/lib/Catmandu/Exporter/MARC.pm
index 4dcd428..be1e42b 100644
--- a/lib/Catmandu/Exporter/MARC.pm
+++ b/lib/Catmandu/Exporter/MARC.pm
@@ -3,7 +3,7 @@ use Catmandu::Sane;
 use Catmandu::Util;
 use Moo;
 
-our $VERSION = '1.22';
+our $VERSION = '1.23';
 
 has type           => (is => 'ro' , default => sub { 'ISO' });
 has skip_errors    => (is => 'ro');
diff --git a/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm b/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm
index 4809037..007fff3 100644
--- a/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm
+++ b/lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm
@@ -62,7 +62,7 @@ use Catmandu::Util qw(xml_escape is_different :array :is);
 use List::Util;
 use Moo;
 
-our $VERSION = '1.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
 
diff --git a/lib/Catmandu/Exporter/MARC/Base.pm b/lib/Catmandu/Exporter/MARC/Base.pm
index 71eb524..9578276 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.22';
+our $VERSION = '1.23';
 
 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 e6a4094..98a2792 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.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
 
diff --git a/lib/Catmandu/Exporter/MARC/MARCMaker.pm b/lib/Catmandu/Exporter/MARC/MARCMaker.pm
index edd96d4..1933a91 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.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
 
diff --git a/lib/Catmandu/Exporter/MARC/MiJ.pm b/lib/Catmandu/Exporter/MARC/MiJ.pm
index 8c3f69c..669f04e 100644
--- a/lib/Catmandu/Exporter/MARC/MiJ.pm
+++ b/lib/Catmandu/Exporter/MARC/MiJ.pm
@@ -115,7 +115,7 @@ use MARC::Record;
 use MARC::Field;
 use MARC::File::MiJ;
 
-our $VERSION = '1.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
 
diff --git a/lib/Catmandu/Exporter/MARC/XML.pm b/lib/Catmandu/Exporter/MARC/XML.pm
index 5712849..9b64254 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.22';
+our $VERSION = '1.23';
 
 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 9717dc0..4ddc0fc 100644
--- a/lib/Catmandu/Fix/Bind/marc_each.pm
+++ b/lib/Catmandu/Fix/Bind/marc_each.pm
@@ -7,7 +7,7 @@ use Catmandu::MARC;
 use Catmandu::Fix::Has;
 use namespace::clean;
 
-our $VERSION = '1.22';
+our $VERSION = '1.23';
 
 has var    => (fix_opt => 1);
 has __marc => (is => 'lazy');
diff --git a/lib/Catmandu/Fix/Condition/marc_all_match.pm b/lib/Catmandu/Fix/Condition/marc_all_match.pm
index 7e7c966..bdeadc8 100644
--- a/lib/Catmandu/Fix/Condition/marc_all_match.pm
+++ b/lib/Catmandu/Fix/Condition/marc_all_match.pm
@@ -7,7 +7,7 @@ use Catmandu::Fix::remove_field;
 use Moo;
 use Catmandu::Fix::Has;
 
-our $VERSION = '1.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Fix::Condition';
 
diff --git a/lib/Catmandu/Fix/Condition/marc_any_match.pm b/lib/Catmandu/Fix/Condition/marc_any_match.pm
index 2ec37d7..36d0162 100644
--- a/lib/Catmandu/Fix/Condition/marc_any_match.pm
+++ b/lib/Catmandu/Fix/Condition/marc_any_match.pm
@@ -7,7 +7,7 @@ use Catmandu::Fix::remove_field;
 use Moo;
 use Catmandu::Fix::Has;
 
-our $VERSION = '1.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Fix::Condition';
 
diff --git a/lib/Catmandu/Fix/Condition/marc_has.pm b/lib/Catmandu/Fix/Condition/marc_has.pm
index bff4f60..c807b5c 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.22';
+our $VERSION = '1.23';
 
 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 41fd447..23d21f2 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.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Fix::Condition';
 
diff --git a/lib/Catmandu/Fix/Condition/marc_match.pm b/lib/Catmandu/Fix/Condition/marc_match.pm
index 6d2ed88..a105c1d 100644
--- a/lib/Catmandu/Fix/Condition/marc_match.pm
+++ b/lib/Catmandu/Fix/Condition/marc_match.pm
@@ -2,7 +2,7 @@ package Catmandu::Fix::Condition::marc_match;
 
 use Moo;
 
-our $VERSION = '1.22';
+our $VERSION = '1.23';
 
 extends 'Catmandu::Fix::Condition::marc_all_match';
 
diff --git a/lib/Catmandu/Fix/Inline/marc_add.pm b/lib/Catmandu/Fix/Inline/marc_add.pm
index b13e0d3..66f3352 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.22';
+our $VERSION = '1.23';
 
 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 2b11e4c..cfd7bb1 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.22';
+our $VERSION = '1.23';
 
 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 81a88c8..017d248 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.22';
+our $VERSION = '1.23';
 
 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 a34a7be..32f5704 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.22';
+our $VERSION = '1.23';
 
 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 1cfa26a..c090ccf 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.22';
+our $VERSION = '1.23';
 
 has marc_path   => (fix_arg => 1);
 has subfields   => (fix_arg => 'collect');
diff --git a/lib/Catmandu/Fix/marc_append.pm b/lib/Catmandu/Fix/marc_append.pm
index 2120732..a34058d 100644
--- a/lib/Catmandu/Fix/marc_append.pm
+++ b/lib/Catmandu/Fix/marc_append.pm
@@ -7,7 +7,7 @@ use Catmandu::Fix::Has;
 
 with 'Catmandu::Fix::Inlineable';
 
-our $VERSION = '1.22';
+our $VERSION = '1.23';
 
 has marc_path      => (fix_arg => 1);
 has value          => (fix_arg => 1);
diff --git a/lib/Catmandu/Fix/marc_decode_dollar_subfields.pm b/lib/Catmandu/Fix/marc_decode_dollar_subfields.pm
index b154d73..d7e95ec 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.22';
+our $VERSION = '1.23';
 
 sub fix {
 	my ($self,$data) = @_;
diff --git a/lib/Catmandu/Fix/marc_in_json.pm b/lib/Catmandu/Fix/marc_in_json.pm
index e22c768..a6ae218 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.22';
+our $VERSION = '1.23';
 
 has reverse => (fix_opt => 1);
 
diff --git a/lib/Catmandu/Fix/marc_map.pm b/lib/Catmandu/Fix/marc_map.pm
index ee8ac30..e6ca923 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.22';
+our $VERSION = '1.23';
 
 has marc_path      => (fix_arg => 1);
 has path           => (fix_arg => 1);
diff --git a/lib/Catmandu/Fix/marc_paste.pm b/lib/Catmandu/Fix/marc_paste.pm
index dcec4ab..34b969e 100644
--- a/lib/Catmandu/Fix/marc_paste.pm
+++ b/lib/Catmandu/Fix/marc_paste.pm
@@ -7,7 +7,7 @@ use Catmandu::Fix::Has;
 
 with 'Catmandu::Fix::Inlineable';
 
-our $VERSION = '1.22';
+our $VERSION = '1.23';
 
 has path   => (fix_arg => 1);
 has at     => (fix_opt => 1);
diff --git a/lib/Catmandu/Fix/marc_remove.pm b/lib/Catmandu/Fix/marc_remove.pm
index 9ee75f8..7330356 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.22';
+our $VERSION = '1.23';
 
 has marc_path => (fix_arg => 1);
 
diff --git a/lib/Catmandu/Fix/marc_replace_all.pm b/lib/Catmandu/Fix/marc_replace_all.pm
index 4c4d709..4eebdef 100644
--- a/lib/Catmandu/Fix/marc_replace_all.pm
+++ b/lib/Catmandu/Fix/marc_replace_all.pm
@@ -7,7 +7,7 @@ use Catmandu::Fix::Has;
 
 with 'Catmandu::Fix::Inlineable';
 
-our $VERSION = '1.22';
+our $VERSION = '1.23';
 
 has marc_path      => (fix_arg => 1);
 has regex          => (fix_arg => 1);
diff --git a/lib/Catmandu/Fix/marc_set.pm b/lib/Catmandu/Fix/marc_set.pm
index 7df4556..f90735f 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.22';
+our $VERSION = '1.23';
 
 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 72c3b36..ae712ec 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.22';
+our $VERSION = '1.23';
 
 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 51c7fa3..27b1d8d 100644
--- a/lib/Catmandu/Fix/marc_xml.pm
+++ b/lib/Catmandu/Fix/marc_xml.pm
@@ -8,7 +8,7 @@ use Clone qw(clone);
 
 with 'Catmandu::Fix::Inlineable';
 
-our $VERSION = '1.22';
+our $VERSION = '1.23';
 
 has path  => (fix_arg => 1);
 
diff --git a/lib/Catmandu/Importer/MARC.pm b/lib/Catmandu/Importer/MARC.pm
index 9f53696..d487e6d 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.22';
+our $VERSION = '1.23';
 
 has type           => (is => 'ro' , default => sub { 'ISO' });
 has skip_errors    => (is => 'ro');
diff --git a/lib/Catmandu/Importer/MARC/ALEPHSEQ.pm b/lib/Catmandu/Importer/MARC/ALEPHSEQ.pm
index e4a363d..853e3ed 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.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/Decoder.pm b/lib/Catmandu/Importer/MARC/Decoder.pm
index 159cb0d..feedfd7 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.22';
+our $VERSION = '1.23';
 
 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 4a93a79..f57f2a5 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.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/Lint.pm b/lib/Catmandu/Importer/MARC/Lint.pm
index f5b10a8..181822c 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.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/MARCMaker.pm b/lib/Catmandu/Importer/MARC/MARCMaker.pm
index 62e4c22..c995133 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.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/MiJ.pm b/lib/Catmandu/Importer/MARC/MiJ.pm
index 5c372e1..64b6666 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.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/MicroLIF.pm b/lib/Catmandu/Importer/MARC/MicroLIF.pm
index d1104e8..9735057 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.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/RAW.pm b/lib/Catmandu/Importer/MARC/RAW.pm
index b4b78c6..b016f3b 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.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/Record.pm b/lib/Catmandu/Importer/MARC/Record.pm
index f65d7e8..0a27dd2 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.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/Importer/MARC/XML.pm b/lib/Catmandu/Importer/MARC/XML.pm
index 21e9b0d..4b27b5a 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.22';
+our $VERSION = '1.23';
 
 with 'Catmandu::Importer';
 
diff --git a/lib/Catmandu/MARC.pm b/lib/Catmandu/MARC.pm
index 2351f9d..3a1b78b 100644
--- a/lib/Catmandu/MARC.pm
+++ b/lib/Catmandu/MARC.pm
@@ -15,7 +15,7 @@ memoize('compile_marc_path');
 memoize('parse_marc_spec');
 memoize('_get_index_range');
 
-our $VERSION = '1.22';
+our $VERSION = '1.23';
 
 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



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