Skip to content

Commit

Permalink
1.04
Browse files Browse the repository at this point in the history
  • Loading branch information
phochste committed Jan 18, 2017
1 parent d431dd6 commit 62b726c
Show file tree
Hide file tree
Showing 35 changed files with 36 additions and 34 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,6 +1,8 @@
Revision history for Catmandu-MARC

{{$NEXT}}

1.04 2017-01-18 09:23:26 CET
- Skipping new lines in ALEPHSEQ exports

1.03 2016-11-03 08:48:19 CET
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC.pm
Expand Up @@ -76,7 +76,7 @@ package Catmandu::Exporter::MARC;
use Catmandu::Sane;
use Moo;

our $VERSION = '1.03';
our $VERSION = '1.04';

has type => (is => 'ro' , default => sub { 'ISO' });
has _exporter => (is => 'ro' , lazy => 1 , builder => '_build_exporter' , handles => 'Catmandu::Exporter');
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm
Expand Up @@ -58,7 +58,7 @@ use Catmandu::Util qw(xml_escape is_different :array :is);
use List::Util;
use Moo;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC/Base.pm
Expand Up @@ -3,7 +3,7 @@ use Moo::Role;
use MARC::Record;
use MARC::Field;

our $VERSION = '1.03';
our $VERSION = '1.04';

sub _raw_to_marc_record {
my ($self,$data) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC/ISO.pm
Expand Up @@ -60,7 +60,7 @@ use MARC::Record;
use MARC::Field;
use MARC::File::USMARC;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC/MARCMaker.pm
Expand Up @@ -60,7 +60,7 @@ use MARC::Record;
use MARC::Field;
use MARC::File::MARCMaker;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC/MiJ.pm
Expand Up @@ -60,7 +60,7 @@ use MARC::Record;
use MARC::Field;
use MARC::File::MiJ;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC/XML.pm
Expand Up @@ -3,7 +3,7 @@ use Catmandu::Sane;
use Catmandu::Util qw(xml_escape is_different :array :is);
use Moo;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Exporter', 'Catmandu::Exporter::MARC::Base';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Bind/marc_each.pm
Expand Up @@ -3,7 +3,7 @@ package Catmandu::Fix::Bind::marc_each;
use Moo;
use Catmandu::Util;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Fix::Bind';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Condition/marc_has.pm
Expand Up @@ -7,7 +7,7 @@ use Catmandu::Fix::remove_field;
use Moo;
use Catmandu::Fix::Has;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Fix::Condition';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Condition/marc_has_many.pm
Expand Up @@ -7,7 +7,7 @@ use Catmandu::Fix::remove_field;
use Moo;
use Catmandu::Fix::Has;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Fix::Condition';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Condition/marc_match.pm
Expand Up @@ -7,7 +7,7 @@ use Catmandu::Fix::remove_field;
use Moo;
use Catmandu::Fix::Has;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Fix::Condition';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Inline/marc_add.pm
Expand Up @@ -7,7 +7,7 @@ require Exporter;
@EXPORT_OK = qw(marc_add);
%EXPORT_TAGS = (all => [qw(marc_add)]);

our $VERSION = '1.03';
our $VERSION = '1.04';

sub marc_add {
my ($data,$marc_path,@subfields) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Inline/marc_map.pm
Expand Up @@ -65,7 +65,7 @@ require Exporter;
@EXPORT_OK = qw(marc_map);
%EXPORT_TAGS = (all => [qw(marc_map)]);

our $VERSION = '1.03';
our $VERSION = '1.04';

sub marc_map {
my ($data,$marc_path,%opts) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Inline/marc_remove.pm
Expand Up @@ -7,7 +7,7 @@ require Exporter;
@EXPORT_OK = qw(marc_remove);
%EXPORT_TAGS = (all => [qw(marc_remove)]);

our $VERSION = '1.03';
our $VERSION = '1.04';

sub marc_remove {
my ($data,$marc_path) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Inline/marc_set.pm
Expand Up @@ -7,7 +7,7 @@ require Exporter;
@EXPORT_OK = qw(marc_set);
%EXPORT_TAGS = (all => [qw(marc_set)]);

our $VERSION = '1.03';
our $VERSION = '1.04';

sub marc_set {
my ($data,$marc_path,$value) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_add.pm
Expand Up @@ -7,7 +7,7 @@ use Catmandu::Fix::Has;

with 'Catmandu::Fix::Inlineable';

our $VERSION = '1.03';
our $VERSION = '1.04';

has marc_path => (fix_arg => 1);
has subfields => (fix_arg => 'collect');
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_decode_dollar_subfields.pm
Expand Up @@ -7,7 +7,7 @@ use Catmandu::Fix::Has;

with 'Catmandu::Fix::Inlineable';

our $VERSION = '1.03';
our $VERSION = '1.04';

sub fix {
my ($self,$data) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_in_json.pm
Expand Up @@ -7,7 +7,7 @@ use Catmandu::Fix::Has;

with 'Catmandu::Fix::Inlineable';

our $VERSION = '1.03';
our $VERSION = '1.04';

has reverse => (fix_opt => 1);

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_map.pm
Expand Up @@ -7,7 +7,7 @@ use Catmandu::Fix::Has;

with 'Catmandu::Fix::Base';

our $VERSION = '1.03';
our $VERSION = '1.04';

has marc_path => (fix_arg => 1);
has path => (fix_arg => 1);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_remove.pm
Expand Up @@ -7,7 +7,7 @@ use Catmandu::Fix::Has;

with 'Catmandu::Fix::Inlineable';

our $VERSION = '1.03';
our $VERSION = '1.04';

has marc_path => (fix_arg => 1);

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_set.pm
Expand Up @@ -7,7 +7,7 @@ use Catmandu::Fix::Has;

with 'Catmandu::Fix::Inlineable';

our $VERSION = '1.03';
our $VERSION = '1.04';

has marc_path => (fix_arg => 1);
has value => (fix_arg => 1);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_xml.pm
Expand Up @@ -7,7 +7,7 @@ use Catmandu::Fix::Has;

with 'Catmandu::Fix::Inlineable';

our $VERSION = '1.03';
our $VERSION = '1.04';

has path => (fix_arg => 1);

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC.pm
Expand Up @@ -127,7 +127,7 @@ use Catmandu::Sane;
use Catmandu::Util;
use Moo;

our $VERSION = '1.03';
our $VERSION = '1.04';

has type => (is => 'ro' , default => sub { 'ISO' });
has _importer => (is => 'ro' , lazy => 1 , builder => '_build_importer' , handles => ['generator']);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/ALEPHSEQ.pm
Expand Up @@ -64,7 +64,7 @@ package Catmandu::Importer::MARC::ALEPHSEQ;
use Catmandu::Sane;
use Moo;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Importer';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/Decoder.pm
Expand Up @@ -3,7 +3,7 @@ package Catmandu::Importer::MARC::Decoder;
use Catmandu::Sane;
use Moo;

our $VERSION = '1.03';
our $VERSION = '1.04';

sub fake_marc_file {
my ($self,$fh,$class) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/ISO.pm
Expand Up @@ -70,7 +70,7 @@ use Moo;
use MARC::File::USMARC;
use Catmandu::Importer::MARC::Decoder;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Importer';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/Lint.pm
Expand Up @@ -79,7 +79,7 @@ use MARC::File::USMARC;
use MARC::Lint;
use Catmandu::Importer::MARC::Decoder;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Importer';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/MARCMaker.pm
Expand Up @@ -70,7 +70,7 @@ use Moo;
use MARC::File::MARCMaker;
use Catmandu::Importer::MARC::Decoder;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Importer';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/MiJ.pm
Expand Up @@ -55,7 +55,7 @@ use MARC::Record;
use Catmandu::Importer::MARC::Decoder;
use MARC::File::MiJ;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Importer';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/MicroLIF.pm
Expand Up @@ -70,7 +70,7 @@ use Moo;
use MARC::File::MicroLIF;
use Catmandu::Importer::MARC::Decoder;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Importer';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/RAW.pm
Expand Up @@ -69,7 +69,7 @@ use Catmandu::Sane;
use Moo;
use MARC::Parser::RAW;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Importer';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/Record.pm
Expand Up @@ -55,7 +55,7 @@ use Catmandu::Sane;
use Catmandu::Importer::MARC::Decoder;
use Moo;

our $VERSION = '1.03';
our $VERSION = '1.04';

with 'Catmandu::Importer';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/XML.pm
Expand Up @@ -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.03';
our $VERSION = '1.04';

with 'Catmandu::Importer';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/MARC.pm
Expand Up @@ -10,7 +10,7 @@ with 'MooX::Singleton';

memoize('compile_marc_path');

our $VERSION = '1.03';
our $VERSION = '1.04';

sub marc_map {
my $self = $_[0];
Expand Down

0 comments on commit 62b726c

Please sign in to comment.