Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 2.10.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 9d70e1b..c0520cc 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
 Revision history for PICA::Data
 
 {{$NEXT}}
+
+2.10 2023-08-09T14:01:25Z
     - Add PICA Import format parser (#129)
     - Add parser counter (method: count)
  • Loading branch information
nichtich committed Aug 9, 2023
1 parent 4943019 commit 9027b29
Show file tree
Hide file tree
Showing 29 changed files with 30 additions and 27 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Revision history for PICA::Data

{{$NEXT}}

2.10 2023-08-09T14:01:25Z
- Add PICA Import format parser (#129)
- Add parser counter (method: count)

Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"web" : "https://github.com/gbv/PICA-Data"
}
},
"version" : "2.09",
"version" : "2.10",
"x_contributors" : [
"Carsten Klee <[email protected]>",
"Jakob Voß <[email protected]>",
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ ignored and additional parameters are passed to the parser's constructor:
- [PICA::Parser::Binary](https://metacpan.org/pod/PICA%3A%3AParser%3A%3ABinary) for type `binary` (binary PICA+)
- [PICA::Parser::Plain](https://metacpan.org/pod/PICA%3A%3AParser%3A%3APlain) for type `plain` or `picaplain` (human-readable PICA+)
- [PICA::Parser::Plus](https://metacpan.org/pod/PICA%3A%3AParser%3A%3APlus) for type `plus` or `picaplus` (normalized PICA+)
- [PICA::Parser::Import](https://metacpan.org/pod/PICA%3A%3AParser%3A%3AImport) for type `import` (PICA Import format)
- [PICA::Parser::JSON](https://metacpan.org/pod/PICA%3A%3AParser%3A%3AJSON) for type `json` (PICA JSON)
- [PICA::Parser::XML](https://metacpan.org/pod/PICA%3A%3AParser%3A%3AXML) for type `xml` or `picaxml` (PICA-XML)
- [PICA::Parser::PPXML](https://metacpan.org/pod/PICA%3A%3AParser%3A%3APPXML) for type `ppxml` (PicaPlus-XML)
Expand Down
2 changes: 1 addition & 1 deletion lib/App/picadata.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package App::picadata;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use Getopt::Long qw(GetOptionsFromArray :config bundling);
use Pod::Usage;
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Data.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Data;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use Exporter 'import';
our @EXPORT_OK
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Data/Field.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Data::Field;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use Carp qw(croak);
use Hash::MultiValue;
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Parser/Base.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Parser::Base;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use PICA::Data::Field;
use Carp qw(croak);
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Parser/Binary.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Parser::Binary;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use charnames qw(:full);

Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Parser/Import.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package PICA::Parser::Import;
use v5.14.1;
use utf8;

our $VERSION = '2.09';
our $VERSION = '2.10';

use charnames ':full';
use Carp qw(carp croak);
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Parser/JSON.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Parser::JSON;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use JSON::PP;
our $JSON = JSON::PP->new;
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Parser/PIXML.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Parser::PIXML;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use parent 'PICA::Parser::XML';

Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Parser/PPXML.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Parser::PPXML;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use parent 'PICA::Parser::XML';

Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Parser/Plain.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package PICA::Parser::Plain;
use v5.14.1;
use utf8;

our $VERSION = '2.09';
our $VERSION = '2.10';

use charnames ':full';
use Carp qw(carp croak);
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Parser/Plus.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Parser::Plus;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use charnames qw(:full);
use Carp qw(carp croak);
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Parser/XML.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Parser::XML;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use Carp qw(croak);
use Scalar::Util qw(reftype);
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Patch.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Patch;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use PICA::Schema qw(field_identifier);
use PICA::Data::Field;
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Path.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package PICA::Path;
use v5.14.1;
use utf8;

our $VERSION = '2.09';
our $VERSION = '2.10';

require Exporter;
our @ISA = qw(Exporter);
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Schema.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Schema;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use Scalar::Util qw(reftype);
use Storable qw(dclone);
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Schema/Builder.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Schema::Builder;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use Scalar::Util qw(reftype);
use Storable qw(dclone);
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Writer/Base.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Writer::Base;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use Scalar::Util qw(blessed openhandle reftype);
use PICA::Schema qw(clean_pica);
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Writer/Binary.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Writer::Binary;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use charnames qw(:full);

Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Writer/Generic.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Writer::Generic;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use charnames qw(:full);

Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Writer/Import.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Writer::Import;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use charnames qw(:full);

Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Writer/JSON.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Writer::JSON;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use Scalar::Util qw(reftype);
use JSON::PP;
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Writer/PIXML.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Writer::PIXML;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use Scalar::Util qw(reftype);
use XML::LibXML;
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Writer/PPXML.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Writer::PPXML;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use Scalar::Util qw(reftype);
use XML::LibXML;
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Writer/Plain.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Writer::Plain;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use charnames qw(:full);
use Term::ANSIColor;
Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Writer/Plus.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Writer::Plus;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use charnames qw(:full);

Expand Down
2 changes: 1 addition & 1 deletion lib/PICA/Writer/XML.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package PICA::Writer::XML;
use v5.14.1;

our $VERSION = '2.09';
our $VERSION = '2.10';

use Scalar::Util qw(reftype);
use XML::Writer;
Expand Down

0 comments on commit 9027b29

Please sign in to comment.