Skip to content

Commit 4e47160

Browse files
committedAug 23, 2024
0.21
1 parent 455aa3b commit 4e47160

File tree

11 files changed

+12
-22
lines changed

11 files changed

+12
-22
lines changed
 

‎Changes

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Revision history for Catmandu-OAI
22

33
{{$NEXT}}
4+
5+
0.21 2024-08-23 07:51:38 CEST
46
- Maintenance release
57
- Removing old dependencies checks
68

‎META.json

+1-13
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,6 @@
2323
"xt"
2424
]
2525
},
26-
"optional_features" : {
27-
"xslt" : {
28-
"description" : "xslt",
29-
"prereqs" : {
30-
"runtime" : {
31-
"requires" : {
32-
"Catmandu::XML" : "0.15"
33-
}
34-
}
35-
}
36-
}
37-
},
3826
"prereqs" : {
3927
"configure" : {
4028
"requires" : {
@@ -83,7 +71,7 @@
8371
"web" : "https://github.com/LibreCat/Catmandu-OAI"
8472
}
8573
},
86-
"version" : "0.20",
74+
"version" : "0.21",
8775
"x_contributors" : [
8876
"Christian Pietsch <christian.pietsch@uni-bielefeld.de>",
8977
"Jakob Voss <voss@gbv.de>",

‎lib/Catmandu/Importer/OAI.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use Carp;
99
use Catmandu::Error;
1010
use URI;
1111

12-
our $VERSION = '0.20';
12+
our $VERSION = '0.21';
1313

1414
with 'Catmandu::Importer';
1515

‎lib/Catmandu/Importer/OAI/Parser/marcxml.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Catmandu::Importer::OAI::Parser::marcxml;
33
use Catmandu::Sane;
44
use Moo;
55

6-
our $VERSION = '0.20';
6+
our $VERSION = '0.21';
77

88
sub parse {
99
my ($self,$dom) = @_;

‎lib/Catmandu/Importer/OAI/Parser/mods.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use MODS::Record;
66
use Catmandu::Util;
77
use JSON;
88

9-
our $VERSION = '0.20';
9+
our $VERSION = '0.21';
1010

1111
with 'Catmandu::Logger';
1212

‎lib/Catmandu/Importer/OAI/Parser/oai_dc.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Catmandu::Importer::OAI::Parser::oai_dc;
33
use Catmandu::Sane;
44
use Moo;
55

6-
our $VERSION = '0.20';
6+
our $VERSION = '0.21';
77

88
sub parse {
99
my ($self,$dom) = @_;

‎lib/Catmandu/Importer/OAI/Parser/raw.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Catmandu::Importer::OAI::Parser::raw;
33
use Catmandu::Sane;
44
use Moo;
55

6-
our $VERSION = '0.20';
6+
our $VERSION = '0.21';
77

88
sub parse {
99
my ($self,$dom) = @_;

‎lib/Catmandu/Importer/OAI/Parser/struct.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use Catmandu::Sane;
44
use Moo;
55
use XML::Struct qw(readXML);
66

7-
our $VERSION = '0.20';
7+
our $VERSION = '0.21';
88

99
sub parse {
1010
my ($self,$dom) = @_;

‎lib/Catmandu/OAI.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Catmandu::OAI - Catmandu modules for working with OAI repositories
2929
3030
=cut
3131

32-
our $VERSION = '0.20';
32+
our $VERSION = '0.21';
3333

3434
=head1 MODULES
3535

‎lib/Catmandu/Store/OAI.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Catmandu::Store::OAI;
22

33
use Catmandu::Sane;
44

5-
our $VERSION = '0.20';
5+
our $VERSION = '0.21';
66

77
use Moo;
88
use Catmandu::Util qw(:is);

‎lib/Catmandu/Store/OAI/Bag.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use Catmandu::Hits;
77
use Catmandu::Error;
88
use Moo;
99

10-
our $VERSION = '0.20';
10+
our $VERSION = '0.21';
1111

1212
with 'Catmandu::Bag';
1313

0 commit comments

Comments
 (0)
Please sign in to comment.