Skip to content

Commit

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

diff --git a/Changes b/Changes
index 775e5d5..c17c9ed 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
 Revision history for PICA::Data
 
 {{$NEXT}}
+
+2.12 2023-08-28T08:01:58Z
     - Add explicit PICA Patch parser and writer
     - Fix parsing plain $$ (#136)
     - Fix diff for multiple fields of same identifier
  • Loading branch information
nichtich committed Aug 28, 2023
1 parent 8001b5b commit 9d0b9f9
Show file tree
Hide file tree
Showing 31 changed files with 34 additions and 29 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.12 2023-08-28T08:01:58Z
- Add explicit PICA Patch parser and writer
- Fix parsing plain $$ (#136)
- Fix diff for multiple fields of same identifier
Expand Down
3 changes: 2 additions & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,10 @@
"web" : "https://github.com/gbv/PICA-Data"
}
},
"version" : "2.11",
"version" : "2.12",
"x_contributors" : [
"Carsten Klee <klee@cpan.org>",
"Graham Knop <haarg@haarg.org>",
"Jakob Voß <jakob.voss@gbv.de>",
"Johann Rolschewski <jorol@cpan.org>",
"Nico Wagner <nwagner84@protonmail.com>"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ ignored and additional parameters are passed to the parser's constructor:
- [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)
- [PICA::Parser::PIXML](https://metacpan.org/pod/PICA%3A%3AParser%3A%3APIXML) for type `pixml` (PICA FOLIO Import XML)
- [PICA::Parser::Patch](https://metacpan.org/pod/PICA%3A%3AParser%3A%3APatch) for type `patch` (PICA Patch format)

## pica\_guess( $data )

Expand All @@ -147,6 +148,7 @@ Create a PICA writer object (see [PICA::Writer::Base](https://metacpan.org/pod/P
- [PICA::Writer::XML](https://metacpan.org/pod/PICA%3A%3AWriter%3A%3AXML) for type `xml` or `picaxml` (PICA-XML)
- [PICA::Writer::PPXML](https://metacpan.org/pod/PICA%3A%3AWriter%3A%3APPXML) for type `ppxml` (PicaPlus-XML)
- [PICA::Writer::PIXML](https://metacpan.org/pod/PICA%3A%3AWriter%3A%3APIXML) for type `pixml` (PICA FOLIO Import XML)
- [PICA::Writer::Patch](https://metacpan.org/pod/PICA%3A%3AWriter%3A%3APatch) for type `patch` (PICA Patch format)

## pica\_string( $record \[, $type \[, @options\] \] )

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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

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

our $VERSION = '2.11';
our $VERSION = '2.12';

use parent 'PICA::Parser::Plain';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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

our $VERSION = '2.11';
our $VERSION = '2.12';

use Carp qw(croak);

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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.11';
our $VERSION = '2.12';

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

0 comments on commit 9d0b9f9

Please sign in to comment.