File tree 7 files changed +13
-9
lines changed
7 files changed +13
-9
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.36 -TRIAL - 2021-07-15
3
+ 0.37 -TRIAL - 2021-07-21
4
4
5
5
[Change Log]
6
6
7
7
- TBD Update Changes and Increment version
8
+ - f6227a4 Replace remaining XML::XPath with XML::libXML
9
+
10
+ 0.36-TRIAL - 2021-07-15
11
+
12
+ [Change Log]
13
+
14
+ - 7bddf72 Update Changes and Increment version
8
15
- be1a42f Remove no_comments call from IdP
9
16
10
17
0.35-TRIAL - 2021-07-14
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ my %WriteMakefileArgs = (
45
45
" URI::QueryParam" => 0,
46
46
" XML::Generator" => 0,
47
47
" XML::LibXML" => 0,
48
- " XML::Tidy" => 0,
49
48
" XML::Writer" => " 0.625" ,
50
49
" base" => 0,
51
50
" constant" => 0,
@@ -69,7 +68,7 @@ my %WriteMakefileArgs = (
69
68
" URI::URL" => 0,
70
69
" XML::LibXML::XPathContext" => 0
71
70
},
72
- " VERSION" => " 0.36 " ,
71
+ " VERSION" => " 0.37 " ,
73
72
" test" => {
74
73
" TESTS" => " t/*.t t/author/*.t"
75
74
}
@@ -119,7 +118,6 @@ my %FallbackPrereqs = (
119
118
" XML::Generator" => 0,
120
119
" XML::LibXML" => 0,
121
120
" XML::LibXML::XPathContext" => 0,
122
- " XML::Tidy" => 0,
123
121
" XML::Writer" => " 0.625" ,
124
122
" base" => 0,
125
123
" constant" => 0,
Original file line number Diff line number Diff line change 2
2
Net::SAML2
3
3
4
4
VERSION
5
- version 0.36
5
+ version 0.37
6
6
7
7
SYNOPSIS
8
8
# generate a redirect off to the IdP:
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ requires "URI" => "0";
29
29
requires " URI::QueryParam" => " 0" ;
30
30
requires " XML::Generator" => " 0" ;
31
31
requires " XML::LibXML" => " 0" ;
32
- requires " XML::Tidy" => " 0" ;
33
32
requires " XML::Writer" => " 0.625" ;
34
33
requires " base" => " 0" ;
35
34
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.36 ' ;
7
+ our $VERSION = ' 0.37 ' ;
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.47';
39
- $VERSION = ' 0.36 ' ;
39
+ $VERSION = ' 0.37 ' ;
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::LibXML;
9
9
use vars qw( $VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG) ;
10
10
11
11
$DEBUG = 0;
12
- $VERSION = ' 0.36 ' ;
12
+ $VERSION = ' 0.37 ' ;
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