From 951584af32a5ed22520d4ceae93dcf47c689c5e3 Mon Sep 17 00:00:00 2001 From: Patrick Hochstenbach Date: Thu, 31 Oct 2024 16:37:28 +0100 Subject: [PATCH] 1.33 --- Build.PL | 4 ++-- 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/Line.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_sort.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/Line.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 +- lib/Catmandu/Validator/MARC.pm | 2 +- 46 files changed, 48 insertions(+), 46 deletions(-) diff --git a/Build.PL b/Build.PL index dc7aa87..18d6ac0 100644 --- a/Build.PL +++ b/Build.PL @@ -20,7 +20,7 @@ my %module_build_args = ( "Johann Rolschewski" ], "dist_name" => "Catmandu-MARC", - "dist_version" => "1.32", + "dist_version" => "1.33", "license" => "perl", "module_name" => "Catmandu::MARC", "recursive_test_files" => 1, @@ -32,7 +32,7 @@ my %module_build_args = ( "MARC::File::MARCMaker" => "0.05", "MARC::File::MiJ" => "0.04", "MARC::File::XML" => "v1.0.5", - "MARC::Lint" => "1.53", + "MARC::Lint" => "1.52", "MARC::Parser::RAW" => 0, "MARC::Record" => "v2.0.6", "MARC::Schema" => "0.07", diff --git a/Changes b/Changes index 90f2150..29cf09e 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Catmandu-MARC {{$NEXT}} + +1.33 2024-10-31 16:36:59 CET - Allowing MARC::Lint 1.52 installd (obs Uldis Bojars) 1.32 2024-01-31 19:25:19 CET diff --git a/lib/Catmandu/Exporter/MARC.pm b/lib/Catmandu/Exporter/MARC.pm index 72b17d1..397eeea 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.32'; +our $VERSION = '1.33'; 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 472eb16..2d3092c 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; diff --git a/lib/Catmandu/Exporter/MARC/Base.pm b/lib/Catmandu/Exporter/MARC/Base.pm index 251e9be..01a122c 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.32'; +our $VERSION = '1.33'; 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 5ce3425..1a30906 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; diff --git a/lib/Catmandu/Exporter/MARC/Line.pm b/lib/Catmandu/Exporter/MARC/Line.pm index b8e7e06..0024bdf 100644 --- a/lib/Catmandu/Exporter/MARC/Line.pm +++ b/lib/Catmandu/Exporter/MARC/Line.pm @@ -61,7 +61,7 @@ package Catmandu::Exporter::MARC::Line; use Catmandu::Sane; use Moo; -our $VERSION = '1.32'; +our $VERSION = '1.33'; with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; diff --git a/lib/Catmandu/Exporter/MARC/MARCMaker.pm b/lib/Catmandu/Exporter/MARC/MARCMaker.pm index 6f5986b..ea62559 100644 --- a/lib/Catmandu/Exporter/MARC/MARCMaker.pm +++ b/lib/Catmandu/Exporter/MARC/MARCMaker.pm @@ -56,7 +56,7 @@ package Catmandu::Exporter::MARC::MARCMaker; use Catmandu::Sane; use Moo; -our $VERSION = '1.32'; +our $VERSION = '1.33'; with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; diff --git a/lib/Catmandu/Exporter/MARC/MiJ.pm b/lib/Catmandu/Exporter/MARC/MiJ.pm index 6253047..22b478a 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base'; diff --git a/lib/Catmandu/Exporter/MARC/XML.pm b/lib/Catmandu/Exporter/MARC/XML.pm index 2d5df99..1b5f5d6 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.32'; +our $VERSION = '1.33'; 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 6864402..0689d28 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.32'; +our $VERSION = '1.33'; 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 a354af1..73376fb 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.32'; +our $VERSION = '1.33'; 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 84db263..920edca 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Fix::Condition'; diff --git a/lib/Catmandu/Fix/Condition/marc_has.pm b/lib/Catmandu/Fix/Condition/marc_has.pm index 8b5164f..249531d 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.32'; +our $VERSION = '1.33'; 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 121479b..97ff842 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Fix::Condition'; diff --git a/lib/Catmandu/Fix/Condition/marc_match.pm b/lib/Catmandu/Fix/Condition/marc_match.pm index f1c8967..a55f427 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.32'; +our $VERSION = '1.33'; 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 a919aed..1bee667 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.32'; +our $VERSION = '1.33'; 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 ab11908..0ea81c1 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.32'; +our $VERSION = '1.33'; 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 27a0c08..daeb0d5 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.32'; +our $VERSION = '1.33'; 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 da0c038..5f291e4 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.32'; +our $VERSION = '1.33'; 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 847395b..d60086c 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.32'; +our $VERSION = '1.33'; 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 1555a2d..e93e26a 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.32'; +our $VERSION = '1.33'; 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 c958f59..d545dde 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.32'; +our $VERSION = '1.33'; sub fix { my ($self,$data) = @_; diff --git a/lib/Catmandu/Fix/marc_in_json.pm b/lib/Catmandu/Fix/marc_in_json.pm index a5a8fee..3e1007c 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.32'; +our $VERSION = '1.33'; has reverse => (fix_opt => 1); diff --git a/lib/Catmandu/Fix/marc_map.pm b/lib/Catmandu/Fix/marc_map.pm index 58d17a6..cee66ac 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.32'; +our $VERSION = '1.33'; 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 a73ff49..1f29efd 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.32'; +our $VERSION = '1.33'; 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 0c75c08..9dfb1b7 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.32'; +our $VERSION = '1.33'; 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 2049350..581bfe0 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.32'; +our $VERSION = '1.33'; 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 fb9aa77..b1e27aa 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.32'; +our $VERSION = '1.33'; has marc_path => (fix_arg => 1); has value => (fix_arg => 1); diff --git a/lib/Catmandu/Fix/marc_sort.pm b/lib/Catmandu/Fix/marc_sort.pm index c3de784..0691fde 100644 --- a/lib/Catmandu/Fix/marc_sort.pm +++ b/lib/Catmandu/Fix/marc_sort.pm @@ -4,7 +4,7 @@ use Catmandu::Sane; use Moo; use Catmandu::MARC; -our $VERSION = '1.32'; +our $VERSION = '1.33'; sub fix { my ( $self, $data ) = @_; diff --git a/lib/Catmandu/Fix/marc_spec.pm b/lib/Catmandu/Fix/marc_spec.pm index 89b7757..bdbc2bc 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.32'; +our $VERSION = '1.33'; 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 0e24514..42811c2 100644 --- a/lib/Catmandu/Fix/marc_xml.pm +++ b/lib/Catmandu/Fix/marc_xml.pm @@ -2,7 +2,7 @@ package Catmandu::Fix::marc_xml; use Catmandu::Sane; -our $VERSION = '1.32'; +our $VERSION = '1.33'; use Moo; use namespace::clean; diff --git a/lib/Catmandu/Importer/MARC.pm b/lib/Catmandu/Importer/MARC.pm index cba53da..7dca5da 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.32'; +our $VERSION = '1.33'; 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 ea11eed..f155946 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/Decoder.pm b/lib/Catmandu/Importer/MARC/Decoder.pm index d1d629a..daae615 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.32'; +our $VERSION = '1.33'; 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 378266e..f7e9a71 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/Line.pm b/lib/Catmandu/Importer/MARC/Line.pm index 96126bf..4775074 100644 --- a/lib/Catmandu/Importer/MARC/Line.pm +++ b/lib/Catmandu/Importer/MARC/Line.pm @@ -71,7 +71,7 @@ package Catmandu::Importer::MARC::Line; use Catmandu::Sane; use Moo; -our $VERSION = '1.32'; +our $VERSION = '1.33'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/Lint.pm b/lib/Catmandu/Importer/MARC/Lint.pm index 1ed0e1d..270ee64 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/MARCMaker.pm b/lib/Catmandu/Importer/MARC/MARCMaker.pm index 3c7df5b..fe8194f 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/MiJ.pm b/lib/Catmandu/Importer/MARC/MiJ.pm index 79b3776..5ac3dbd 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/MicroLIF.pm b/lib/Catmandu/Importer/MARC/MicroLIF.pm index 3a3eab2..4ee045f 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/RAW.pm b/lib/Catmandu/Importer/MARC/RAW.pm index 444c0db..018f1d7 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/Record.pm b/lib/Catmandu/Importer/MARC/Record.pm index c336e55..104774c 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/Importer/MARC/XML.pm b/lib/Catmandu/Importer/MARC/XML.pm index b0eef8c..7e30ac2 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.32'; +our $VERSION = '1.33'; with 'Catmandu::Importer'; diff --git a/lib/Catmandu/MARC.pm b/lib/Catmandu/MARC.pm index 17bed52..d1f424d 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.32'; +our $VERSION = '1.33'; sub marc_map { my $self = $_[0]; diff --git a/lib/Catmandu/Validator/MARC.pm b/lib/Catmandu/Validator/MARC.pm index 4bdec1e..f7e1bd9 100644 --- a/lib/Catmandu/Validator/MARC.pm +++ b/lib/Catmandu/Validator/MARC.pm @@ -4,7 +4,7 @@ use Catmandu::Util qw(:io :is :check); use MARC::Schema; use Moo; -our $VERSION = '1.32'; +our $VERSION = '1.33'; with qw(Catmandu::Validator);