[libcatmandu-mab2-perl] 07/35: 0.16

Jonas Smedegaard dr at jones.dk
Fri Oct 27 17:54:40 UTC 2017


This is an automated email from the git hooks/post-receive script.

js pushed a commit to annotated tag debian/0.21-1
in repository libcatmandu-mab2-perl.

commit ef85062e8fbc39af7c7865c80557cc482cfc5032
Author: Johann Rolschewski <jorol at cpan.org>
Date:   Thu Jul 6 17:33:12 2017 +0200

    0.16
---
 Build.PL                                   | 2 +-
 Changes                                    | 4 ++++
 META.json                                  | 4 ++--
 lib/Catmandu/Exporter/MAB2.pm              | 2 +-
 lib/Catmandu/Fix/Bind/mab_each.pm          | 2 +-
 lib/Catmandu/Fix/Condition/mab_match.pm    | 2 +-
 lib/Catmandu/Fix/mab_map.pm                | 2 +-
 lib/Catmandu/Importer/MAB2.pm              | 2 +-
 lib/Catmandu/Importer/SRU/Parser/mabxml.pm | 2 +-
 lib/Catmandu/MAB2.pm                       | 2 +-
 lib/MAB2/Parser/Disk.pm                    | 2 +-
 lib/MAB2/Parser/RAW.pm                     | 2 +-
 lib/MAB2/Parser/XML.pm                     | 2 +-
 lib/MAB2/Writer/Disk.pm                    | 2 +-
 lib/MAB2/Writer/Handle.pm                  | 2 +-
 lib/MAB2/Writer/RAW.pm                     | 2 +-
 lib/MAB2/Writer/XML.pm                     | 2 +-
 17 files changed, 21 insertions(+), 17 deletions(-)

diff --git a/Build.PL b/Build.PL
index 5ac9a7a..ec2b286 100644
--- a/Build.PL
+++ b/Build.PL
@@ -2,6 +2,6 @@
 use strict;
 use warnings;
 
-use v5.10.1;
+use v5.14.0;
 use Module::Build::Tiny 0.034;
 Build_PL();
diff --git a/Changes b/Changes
index 98120d4..3eae47b 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Changelog for Catmandu-MAB2
 
 {{$NEXT}}
 
+0.16  2017-07-06 17:33:02 CEST
+ - set perl v5.14.0 as minimum version
+ - add MYMETA.* files
+
 0.15  2017-06-30 17:26:58 CEST
  - Delete perl-5.12 from .travis.yml due to Dist::Zilla build fails
  - Update and fix .travis.yml
diff --git a/META.json b/META.json
index ce43a25..f0f46bb 100644
--- a/META.json
+++ b/META.json
@@ -40,7 +40,7 @@
             "Catmandu" : "1.0601",
             "Catmandu::SRU" : "0.032",
             "Readonly" : "0",
-            "perl" : "v5.10.1"
+            "perl" : "v5.14.0"
          }
       },
       "test" : {
@@ -65,7 +65,7 @@
          "web" : "https://github.com/jorol/Catmandu-MAB2"
       }
    },
-   "version" : "0.15",
+   "version" : "0.16",
    "x_contributors" : [
       "Johann Rolschewski <rolschewski at gmail.com>"
    ],
diff --git a/lib/Catmandu/Exporter/MAB2.pm b/lib/Catmandu/Exporter/MAB2.pm
index 6bc6f28..ec5ec53 100644
--- a/lib/Catmandu/Exporter/MAB2.pm
+++ b/lib/Catmandu/Exporter/MAB2.pm
@@ -1,6 +1,6 @@
 package Catmandu::Exporter::MAB2;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use Catmandu::Sane;
 use MAB2::Writer::Disk;
diff --git a/lib/Catmandu/Fix/Bind/mab_each.pm b/lib/Catmandu/Fix/Bind/mab_each.pm
index 1ce08c8..85a4af6 100644
--- a/lib/Catmandu/Fix/Bind/mab_each.pm
+++ b/lib/Catmandu/Fix/Bind/mab_each.pm
@@ -1,6 +1,6 @@
 package Catmandu::Fix::Bind::mab_each;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use Moo;
 use Catmandu::Util;
diff --git a/lib/Catmandu/Fix/Condition/mab_match.pm b/lib/Catmandu/Fix/Condition/mab_match.pm
index 3dbf581..94f0ae1 100644
--- a/lib/Catmandu/Fix/Condition/mab_match.pm
+++ b/lib/Catmandu/Fix/Condition/mab_match.pm
@@ -1,6 +1,6 @@
 package Catmandu::Fix::Condition::mab_match;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use Catmandu::Sane;
 use Catmandu::Fix::mab_map;
diff --git a/lib/Catmandu/Fix/mab_map.pm b/lib/Catmandu/Fix/mab_map.pm
index 9cf9f00..356ac04 100644
--- a/lib/Catmandu/Fix/mab_map.pm
+++ b/lib/Catmandu/Fix/mab_map.pm
@@ -1,7 +1,7 @@
 package Catmandu::Fix::mab_map;
 
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use Catmandu::Sane;
 use Carp qw(confess);
diff --git a/lib/Catmandu/Importer/MAB2.pm b/lib/Catmandu/Importer/MAB2.pm
index 3767227..c2b955b 100644
--- a/lib/Catmandu/Importer/MAB2.pm
+++ b/lib/Catmandu/Importer/MAB2.pm
@@ -1,6 +1,6 @@
 package Catmandu::Importer::MAB2;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use Catmandu::Sane;
 use Moo;
diff --git a/lib/Catmandu/Importer/SRU/Parser/mabxml.pm b/lib/Catmandu/Importer/SRU/Parser/mabxml.pm
index c826a55..317422d 100644
--- a/lib/Catmandu/Importer/SRU/Parser/mabxml.pm
+++ b/lib/Catmandu/Importer/SRU/Parser/mabxml.pm
@@ -1,6 +1,6 @@
 package Catmandu::Importer::SRU::Parser::mabxml;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use Moo;
 use MAB2::Parser::XML;
diff --git a/lib/Catmandu/MAB2.pm b/lib/Catmandu/MAB2.pm
index f923a36..388ef78 100644
--- a/lib/Catmandu/MAB2.pm
+++ b/lib/Catmandu/MAB2.pm
@@ -1,6 +1,6 @@
 package Catmandu::MAB2;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use strict;
 use warnings;
diff --git a/lib/MAB2/Parser/Disk.pm b/lib/MAB2/Parser/Disk.pm
index d0f0f68..d0a312f 100644
--- a/lib/MAB2/Parser/Disk.pm
+++ b/lib/MAB2/Parser/Disk.pm
@@ -1,6 +1,6 @@
 package MAB2::Parser::Disk;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use strict;
 use warnings;
diff --git a/lib/MAB2/Parser/RAW.pm b/lib/MAB2/Parser/RAW.pm
index b2ee2cf..7ab9732 100644
--- a/lib/MAB2/Parser/RAW.pm
+++ b/lib/MAB2/Parser/RAW.pm
@@ -1,6 +1,6 @@
 package MAB2::Parser::RAW;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use strict;
 use warnings;
diff --git a/lib/MAB2/Parser/XML.pm b/lib/MAB2/Parser/XML.pm
index cf38141..2c61d85 100644
--- a/lib/MAB2/Parser/XML.pm
+++ b/lib/MAB2/Parser/XML.pm
@@ -1,6 +1,6 @@
 package MAB2::Parser::XML;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use strict;
 use warnings;
diff --git a/lib/MAB2/Writer/Disk.pm b/lib/MAB2/Writer/Disk.pm
index d9104e7..5dab98a 100644
--- a/lib/MAB2/Writer/Disk.pm
+++ b/lib/MAB2/Writer/Disk.pm
@@ -1,6 +1,6 @@
 package MAB2::Writer::Disk;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use strict;
 use charnames ':full';
diff --git a/lib/MAB2/Writer/Handle.pm b/lib/MAB2/Writer/Handle.pm
index cdc26df..0562e2d 100644
--- a/lib/MAB2/Writer/Handle.pm
+++ b/lib/MAB2/Writer/Handle.pm
@@ -1,6 +1,6 @@
 package MAB2::Writer::Handle;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use strict;
 use Moo::Role;
diff --git a/lib/MAB2/Writer/RAW.pm b/lib/MAB2/Writer/RAW.pm
index e696e40..629ae17 100644
--- a/lib/MAB2/Writer/RAW.pm
+++ b/lib/MAB2/Writer/RAW.pm
@@ -1,6 +1,6 @@
 package MAB2::Writer::RAW;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use strict;
 use Moo;
diff --git a/lib/MAB2/Writer/XML.pm b/lib/MAB2/Writer/XML.pm
index d908db8..23db4ce 100644
--- a/lib/MAB2/Writer/XML.pm
+++ b/lib/MAB2/Writer/XML.pm
@@ -1,6 +1,6 @@
 package MAB2::Writer::XML;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 use strict;
 use Moo;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libcatmandu-mab2-perl.git



More information about the Pkg-perl-cvs-commits mailing list