File tree 6 files changed +14
-8
lines changed
6 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for Perl extension Net::SAML2.
2
2
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
+
3
8
0.30-TRIAL 13-Jan-2021
4
9
5
10
Significant Changes
@@ -9,7 +14,8 @@ Revision history for Perl extension Net::SAML2.
9
14
10
15
Warning: This release require the installation of Crypt::OpenSSL::Verify.
11
16
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
13
19
ccaa892 Remove the installation of Crypt::OpenSSL::VerifyX509 from action
14
20
36d0a5c Move to Crypt-OpenSSL-Verify as Crypt-OpenSSL-Verify is not supported
15
21
af050d5 Merge pull request #8 from timlegge/merge-xml-sig
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ my %WriteMakefileArgs = (
45
45
" XML::Generator" => 0,
46
46
" XML::LibXML" => 0,
47
47
" XML::Tidy" => 0,
48
- " XML::Writer" => 0 ,
48
+ " XML::Writer" => " 0.625 " ,
49
49
" XML::XPath" => 0,
50
50
" base" => 0,
51
51
" constant" => 0,
@@ -68,7 +68,7 @@ my %WriteMakefileArgs = (
68
68
" Test::Pod::Coverage" => " 1.04" ,
69
69
" XML::LibXML::XPathContext" => 0
70
70
},
71
- " VERSION" => " 0.30 " ,
71
+ " VERSION" => " 0.31 " ,
72
72
" test" => {
73
73
" TESTS" => " t/*.t t/author/*.t"
74
74
}
@@ -117,7 +117,7 @@ my %FallbackPrereqs = (
117
117
" XML::LibXML" => 0,
118
118
" XML::LibXML::XPathContext" => 0,
119
119
" XML::Tidy" => 0,
120
- " XML::Writer" => 0 ,
120
+ " XML::Writer" => " 0.625 " ,
121
121
" XML::XPath" => 0,
122
122
" base" => 0,
123
123
" constant" => 0,
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ requires "URI::QueryParam" => "0";
29
29
requires " XML::Generator" => " 0" ;
30
30
requires " XML::LibXML" => " 0" ;
31
31
requires " XML::Tidy" => " 0" ;
32
- requires " XML::Writer" => " 0" ;
32
+ requires " XML::Writer" => " 0.625 " ;
33
33
requires " XML::XPath" => " 0" ;
34
34
requires " base" => " 0" ;
35
35
requires " constant" => " 0" ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use warnings;
4
4
5
5
require 5.008_001;
6
6
7
- our $VERSION = ' 0.30 ' ;
7
+ our $VERSION = ' 0.31 ' ;
8
8
$VERSION = eval {$VERSION };
9
9
10
10
=head1 NAME
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG);
36
36
37
37
$DEBUG = 0;
38
38
# Based on XML::Sig VERSION = '0.39';
39
- $VERSION = ' 0.30 ' ;
39
+ $VERSION = ' 0.31 ' ;
40
40
41
41
use base qw( Class::Accessor) ;
42
42
Net::SAML2::XML::Sig-> mk_accessors(qw( key) );
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use XML::Tidy;
9
9
use vars qw( $VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG) ;
10
10
11
11
$DEBUG = 0;
12
- $VERSION = ' 0.30 ' ;
12
+ $VERSION = ' 0.31 ' ;
13
13
14
14
# We are exporting functions
15
15
use base qw/ Exporter/ ;
You can’t perform that action at this time.
0 commit comments