[libcatmandu-marc-perl] 170/208: 1.15
Jonas Smedegaard
dr at jones.dk
Sat Oct 28 03:42:47 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 d864ce1f91ddca574340d64663e8e123808b6720
Author: Patrick Hochstenbach <patrick.hochstenbach at ugent.be>
Date: Thu Jun 29 16:32:18 2017 +0200
1.15
---
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_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_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 +-
39 files changed, 40 insertions(+), 38 deletions(-)
diff --git a/Build.PL b/Build.PL
index b2071dc..02b6076 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.14",
+ "dist_version" => "1.15",
"license" => "perl",
"module_name" => "Catmandu::MARC",
"recursive_test_files" => 1,
diff --git a/Changes b/Changes
index 7044e93..8ae947f 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
Revision history for Catmandu-MARC
{{$NEXT}}
+
+1.15 2017-06-29 16:31:39 CEST
- Adding the marc_spec_has Fix Condition (Carsten Klee)
- Adding marc_replace_all fix
- Adding marc_append fix
diff --git a/lib/Catmandu/Exporter/MARC.pm b/lib/Catmandu/Exporter/MARC.pm
index 24e6512..eb8400f 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.14';
+our $VERSION = '1.15';
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 10a8ff8..ba7eb84 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
diff --git a/lib/Catmandu/Exporter/MARC/Base.pm b/lib/Catmandu/Exporter/MARC/Base.pm
index 37ad046..4c640a8 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.14';
+our $VERSION = '1.15';
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 4991c87..3bfd2ff 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
diff --git a/lib/Catmandu/Exporter/MARC/MARCMaker.pm b/lib/Catmandu/Exporter/MARC/MARCMaker.pm
index aff6e5e..cb99ffa 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
diff --git a/lib/Catmandu/Exporter/MARC/MiJ.pm b/lib/Catmandu/Exporter/MARC/MiJ.pm
index 5b766cb..f845f63 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';
diff --git a/lib/Catmandu/Exporter/MARC/XML.pm b/lib/Catmandu/Exporter/MARC/XML.pm
index 47179e3..febf484 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.14';
+our $VERSION = '1.15';
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 31865a6..1aad8f2 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Fix::Bind', 'Catmandu::Fix::Bind::Group';
diff --git a/lib/Catmandu/Fix/Condition/marc_has.pm b/lib/Catmandu/Fix/Condition/marc_has.pm
index a8dfe4c..37ddf44 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.14';
+our $VERSION = '1.15';
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 ef8087c..2b5a335 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Fix::Condition';
diff --git a/lib/Catmandu/Fix/Condition/marc_match.pm b/lib/Catmandu/Fix/Condition/marc_match.pm
index ff9e4c2..5a7a8cf 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Fix::Condition';
diff --git a/lib/Catmandu/Fix/Inline/marc_add.pm b/lib/Catmandu/Fix/Inline/marc_add.pm
index dd36f0b..acef0c0 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.14';
+our $VERSION = '1.15';
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 38ce1c5..21cb577 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.14';
+our $VERSION = '1.15';
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 b974456..8599a5e 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.14';
+our $VERSION = '1.15';
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 f4bfbf4..4b1be24 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.14';
+our $VERSION = '1.15';
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 2f039b2..c8d3fd9 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.14';
+our $VERSION = '1.15';
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 f89ba2c..b6200f4 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.14';
+our $VERSION = '1.15';
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 b6690cf..8735de9 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.14';
+our $VERSION = '1.15';
sub fix {
my ($self,$data) = @_;
diff --git a/lib/Catmandu/Fix/marc_in_json.pm b/lib/Catmandu/Fix/marc_in_json.pm
index 3c029c7..f417679 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.14';
+our $VERSION = '1.15';
has reverse => (fix_opt => 1);
diff --git a/lib/Catmandu/Fix/marc_map.pm b/lib/Catmandu/Fix/marc_map.pm
index 4861973..067c988 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.14';
+our $VERSION = '1.15';
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 62087e6..a437fc5 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.14';
+our $VERSION = '1.15';
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 c86c359..9c0dc49 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.14';
+our $VERSION = '1.15';
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 4c88bcc..6464cf4 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.14';
+our $VERSION = '1.15';
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 bf58c29..9579b9d 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.14';
+our $VERSION = '1.15';
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 3d0af60..382ad35 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.14';
+our $VERSION = '1.15';
has path => (fix_arg => 1);
diff --git a/lib/Catmandu/Importer/MARC.pm b/lib/Catmandu/Importer/MARC.pm
index 0d2fa5b..d1ceee2 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.14';
+our $VERSION = '1.15';
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 6805620..e12daad 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Importer';
diff --git a/lib/Catmandu/Importer/MARC/Decoder.pm b/lib/Catmandu/Importer/MARC/Decoder.pm
index 18658d7..a5f1f0a 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.14';
+our $VERSION = '1.15';
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 14b51f9..66a837f 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Importer';
diff --git a/lib/Catmandu/Importer/MARC/Lint.pm b/lib/Catmandu/Importer/MARC/Lint.pm
index 558bd71..c496e8f 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Importer';
diff --git a/lib/Catmandu/Importer/MARC/MARCMaker.pm b/lib/Catmandu/Importer/MARC/MARCMaker.pm
index 0d4e81e..c56470b 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Importer';
diff --git a/lib/Catmandu/Importer/MARC/MiJ.pm b/lib/Catmandu/Importer/MARC/MiJ.pm
index fb412e5..b896404 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Importer';
diff --git a/lib/Catmandu/Importer/MARC/MicroLIF.pm b/lib/Catmandu/Importer/MARC/MicroLIF.pm
index 29cc618..b6cc357 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Importer';
diff --git a/lib/Catmandu/Importer/MARC/RAW.pm b/lib/Catmandu/Importer/MARC/RAW.pm
index 36a750c..faf51f6 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Importer';
diff --git a/lib/Catmandu/Importer/MARC/Record.pm b/lib/Catmandu/Importer/MARC/Record.pm
index db0f981..0d34271 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Importer';
diff --git a/lib/Catmandu/Importer/MARC/XML.pm b/lib/Catmandu/Importer/MARC/XML.pm
index baad53f..9661630 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.14';
+our $VERSION = '1.15';
with 'Catmandu::Importer';
diff --git a/lib/Catmandu/MARC.pm b/lib/Catmandu/MARC.pm
index 91a2282..572c655 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.14';
+our $VERSION = '1.15';
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