Skip to content

Commit 78fe988

Browse files
committed
Update Changes and Increment version
1 parent 71d67e5 commit 78fe988

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

Changes

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Revision history for Perl extension Net::SAML2.
22

3+
0.31-TRIAL 15-Jan-2021
4+
5+
TBD Update Changes and Increment version
6+
2c6780a Fixes #10: XML::Writer requires newer version
7+
38
0.30-TRIAL 13-Jan-2021
49

510
Significant Changes
@@ -9,7 +14,8 @@ Revision history for Perl extension Net::SAML2.
914

1015
Warning: This release require the installation of Crypt::OpenSSL::Verify.
1116

12-
TBD Update Changes and Increment version
17+
0d07622 Merge pull request #9 from timlegge/crypt-openssl-verify
18+
929894c Update Changes and Increment version
1319
ccaa892 Remove the installation of Crypt::OpenSSL::VerifyX509 from action
1420
36d0a5c Move to Crypt-OpenSSL-Verify as Crypt-OpenSSL-Verify is not supported
1521
af050d5 Merge pull request #8 from timlegge/merge-xml-sig

Makefile.PL

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ my %WriteMakefileArgs = (
4545
"XML::Generator" => 0,
4646
"XML::LibXML" => 0,
4747
"XML::Tidy" => 0,
48-
"XML::Writer" => 0,
48+
"XML::Writer" => "0.625",
4949
"XML::XPath" => 0,
5050
"base" => 0,
5151
"constant" => 0,
@@ -68,7 +68,7 @@ my %WriteMakefileArgs = (
6868
"Test::Pod::Coverage" => "1.04",
6969
"XML::LibXML::XPathContext" => 0
7070
},
71-
"VERSION" => "0.30",
71+
"VERSION" => "0.31",
7272
"test" => {
7373
"TESTS" => "t/*.t t/author/*.t"
7474
}
@@ -117,7 +117,7 @@ my %FallbackPrereqs = (
117117
"XML::LibXML" => 0,
118118
"XML::LibXML::XPathContext" => 0,
119119
"XML::Tidy" => 0,
120-
"XML::Writer" => 0,
120+
"XML::Writer" => "0.625",
121121
"XML::XPath" => 0,
122122
"base" => 0,
123123
"constant" => 0,

cpanfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ requires "URI::QueryParam" => "0";
2929
requires "XML::Generator" => "0";
3030
requires "XML::LibXML" => "0";
3131
requires "XML::Tidy" => "0";
32-
requires "XML::Writer" => "0";
32+
requires "XML::Writer" => "0.625";
3333
requires "XML::XPath" => "0";
3434
requires "base" => "0";
3535
requires "constant" => "0";

lib/Net/SAML2.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use warnings;
44

55
require 5.008_001;
66

7-
our $VERSION = '0.30';
7+
our $VERSION = '0.31';
88
$VERSION = eval {$VERSION};
99

1010
=head1 NAME

lib/Net/SAML2/XML/Sig.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG);
3636

3737
$DEBUG = 0;
3838
# Based on XML::Sig VERSION = '0.39';
39-
$VERSION = '0.30';
39+
$VERSION = '0.31';
4040

4141
use base qw(Class::Accessor);
4242
Net::SAML2::XML::Sig->mk_accessors(qw(key));

lib/Net/SAML2/XML/Util.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use XML::Tidy;
99
use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG);
1010

1111
$DEBUG = 0;
12-
$VERSION = '0.30';
12+
$VERSION = '0.31';
1313

1414
# We are exporting functions
1515
use base qw/Exporter/;

0 commit comments

Comments
 (0)