Skip to content

Commit

Permalink
0.216
Browse files Browse the repository at this point in the history
  • Loading branch information
phochste committed Jun 13, 2016
1 parent d802d32 commit d9a09ef
Show file tree
Hide file tree
Showing 34 changed files with 35 additions and 33 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC/ALEPHSEQ.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC/MARCMaker.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC/MiJ.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC/USMARC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Exporter/MARC/XML.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Bind/marc_each.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Condition/marc_match.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Inline/marc_add.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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,@subfields) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Inline/marc_map.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Inline/marc_remove.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/Inline/marc_set.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_add.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_decode_dollar_subfields.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_in_json.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_map.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_remove.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_set.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Fix/marc_xml.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/ALEPHSEQ.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/Decoder.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/Lint.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/MARCMaker.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/MiJ.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/MicroLIF.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/RAW.pm
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ use Catmandu::Sane;
use Moo;
use MARC::Parser::RAW;

our $VERSION = '0.215';
our $VERSION = '0.216';

with 'Catmandu::Importer';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/Record.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/USMARC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ use Catmandu::Sane;
use Moo;
use MARC::File::USMARC;

our $VERSION = '0.215';
our $VERSION = '0.216';

with 'Catmandu::Importer';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/Importer/MARC/XML.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/Catmandu/MARC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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) = @_;
Expand Down

0 comments on commit d9a09ef

Please sign in to comment.