summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgregor herrmann <gregoa@debian.org>2020-02-08 17:03:33 +0100
committergregor herrmann <gregoa@debian.org>2020-02-08 17:03:33 +0100
commita9ab591faba40e4a328173fd8aa6aa37bf47c23e (patch)
treea41f808a3c449f4f06dfd667d6b0c0230480d088
parent6b2f4c4d981bb51d099e18bc4d423737260d3fdb (diff)
parentec41080198bde31ef6aa7c927f6e94f48aa2dc52 (diff)
Update upstream source from tag 'upstream/0.65'
Update to upstream version '0.65' with Debian dir 956971acb4a7db6f262ae7dba4def475e637027b
-rw-r--r--Changes6
-rw-r--r--META.yml4
-rw-r--r--lib/Data/Serializer.pm2
-rw-r--r--t/10-01-Pod.t3
-rw-r--r--t/10-02-Pod-Coverage.t4
5 files changed, 14 insertions, 5 deletions
diff --git a/Changes b/Changes
index 5336909..0ba2766 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,10 @@
Revision history for Perl extension Data::Serializer
+0.65 Sat Feb 1 2020
+ Fix Test::Pod coverage failures
+0.64 Fri Jan 31 2020
+ Fix Test::Pod failures
+0.63 Thr Jan 30 2020
+ Actually fix the github repo link
0.62 Thr Jan 30 2020
Add links to github repository
0.61 Thr Jan 30 2020
diff --git a/META.yml b/META.yml
index d6669ae..9eee44f 100644
--- a/META.yml
+++ b/META.yml
@@ -1,6 +1,6 @@
---
name: Data-Serializer
-version: 0.63
+version: 0.65
author:
- Neil Neely (neil@neely.cx)
abstract: Modules that serialize data structures
@@ -47,7 +47,7 @@ configure_requires:
provides:
Data::Serializer:
file: lib/Data/Serializer.pm
- version: 0.63
+ version: 0.65
Data::Serializer::Bencode:
file: lib/Data/Serializer/Bencode.pm
version: 0.03
diff --git a/lib/Data/Serializer.pm b/lib/Data/Serializer.pm
index 90137be..e9904df 100644
--- a/lib/Data/Serializer.pm
+++ b/lib/Data/Serializer.pm
@@ -7,7 +7,7 @@ use vars qw($VERSION);
use Carp;
require 5.004 ;
-$VERSION = '0.63';
+$VERSION = '0.65';
#Global cache of modules we've loaded
my %_MODULES;
diff --git a/t/10-01-Pod.t b/t/10-01-Pod.t
index 437887a..a0c537d 100644
--- a/t/10-01-Pod.t
+++ b/t/10-01-Pod.t
@@ -1,4 +1,5 @@
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
-all_pod_files_ok();
+pod_file_ok('blib/lib/Data/Serializer.pm');
+done_testing();
diff --git a/t/10-02-Pod-Coverage.t b/t/10-02-Pod-Coverage.t
index 1a2861e..0565a94 100644
--- a/t/10-02-Pod-Coverage.t
+++ b/t/10-02-Pod-Coverage.t
@@ -1,6 +1,8 @@
use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;
-all_pod_coverage_ok();
+pod_coverage_ok('Data::Serializer');
+done_testing();
+