Skip to content

Commit a071834

Browse files
committed
Update Changes and Increment version
1 parent 3741d2a commit a071834

File tree

6 files changed

+22
-6
lines changed

6 files changed

+22
-6
lines changed

Changes

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

3+
0.35-TRIAL - 2021-07-14
4+
5+
[Significant Changes]
6+
7+
Replaces XML::XPath with XML::libXML which is better maintained and more
8+
powerful. XML::libXML options are set to disable loading external documents
9+
and expanding entities as well as disabling network access.
10+
11+
[Change Log]
12+
13+
- TBD Update Changes and Increment version
14+
- 3741d2a Replace XML::XPath with XML::libXML
15+
- f3887f5 Fixup Contributors and cleanup README
16+
- 9d8c3bd Automatically generate README for repo
17+
- 4a1f2ef Update dist.ini to use Pod2Readme
18+
319
0.34 - 2021-03-30
420

521
[Significant Changes since 0.32]
@@ -14,7 +30,7 @@ Revision history for Perl extension Net::SAML2.
1430

1531
[Change Log]
1632

17-
- TBD Update Changes and Increment version
33+
- 1ef0848 Update Changes and Increment version
1834

1935
0.33-TRIAL - 2021-03-28
2036

Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ my %WriteMakefileArgs = (
6969
"URI::URL" => 0,
7070
"XML::LibXML::XPathContext" => 0
7171
},
72-
"VERSION" => "0.34",
72+
"VERSION" => "0.35",
7373
"test" => {
7474
"TESTS" => "t/*.t t/author/*.t"
7575
}

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.34
5+
version 0.35
66

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

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.34';
7+
our $VERSION = '0.35';
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.34';
39+
$VERSION = '0.35';
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.34';
12+
$VERSION = '0.35';
1313

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

0 commit comments

Comments
 (0)