Skip to content

Commit cc4e029

Browse files
committed
Update Changes and Increment version
1 parent f6227a4 commit cc4e029

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

Changes

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

3-
0.36-TRIAL - 2021-07-15
3+
0.37-TRIAL - 2021-07-21
44

55
[Change Log]
66

77
- 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
815
- be1a42f Remove no_comments call from IdP
916

1017
0.35-TRIAL - 2021-07-14

Makefile.PL

+1-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ my %WriteMakefileArgs = (
4545
"URI::QueryParam" => 0,
4646
"XML::Generator" => 0,
4747
"XML::LibXML" => 0,
48-
"XML::Tidy" => 0,
4948
"XML::Writer" => "0.625",
5049
"base" => 0,
5150
"constant" => 0,
@@ -69,7 +68,7 @@ my %WriteMakefileArgs = (
6968
"URI::URL" => 0,
7069
"XML::LibXML::XPathContext" => 0
7170
},
72-
"VERSION" => "0.36",
71+
"VERSION" => "0.37",
7372
"test" => {
7473
"TESTS" => "t/*.t t/author/*.t"
7574
}
@@ -119,7 +118,6 @@ my %FallbackPrereqs = (
119118
"XML::Generator" => 0,
120119
"XML::LibXML" => 0,
121120
"XML::LibXML::XPathContext" => 0,
122-
"XML::Tidy" => 0,
123121
"XML::Writer" => "0.625",
124122
"base" => 0,
125123
"constant" => 0,

README

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ NAME
22
Net::SAML2
33

44
VERSION
5-
version 0.36
5+
version 0.37
66

77
SYNOPSIS
88
# generate a redirect off to the IdP:

cpanfile

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ requires "URI" => "0";
2929
requires "URI::QueryParam" => "0";
3030
requires "XML::Generator" => "0";
3131
requires "XML::LibXML" => "0";
32-
requires "XML::Tidy" => "0";
3332
requires "XML::Writer" => "0.625";
3433
requires "base" => "0";
3534
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.36';
7+
our $VERSION = '0.37';
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.47';
39-
$VERSION = '0.36';
39+
$VERSION = '0.37';
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::LibXML;
99
use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG);
1010

1111
$DEBUG = 0;
12-
$VERSION = '0.36';
12+
$VERSION = '0.37';
1313

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

0 commit comments

Comments
 (0)