Skip to content

Commit 013c6ed

Browse files
committed
Update Changes and Increment version
1 parent 314df85 commit 013c6ed

File tree

6 files changed

+20
-6
lines changed

6 files changed

+20
-6
lines changed

Changes

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
Revision history for Perl extension Net::SAML2.
22

3+
0.40 - 2021-07-26
4+
5+
[Significant Changes since 0.38]
6+
7+
- Add support for Auth0 SAML (bug fix)
8+
- Add options to allow https for metadata urls
9+
10+
[Change Log]
11+
- TDD Update Changes and Increment version
12+
- 314df85 Remove Test::TrailingSpace keeps failing on automatic License file
13+
- 9bc0901 Mention TUTORIAL.md in synopsis and README
14+
- 343ae20 Rename Tutorial
15+
- b5591cc Update documentation for ssl_opts for Idp new_from_url
16+
317
0.39-TRIAL - 2021-07-25
418

519
[Change Log]
6-
- TBD Update Changes and Increment version
20+
- b34f4f8 Update Changes and Increment version
721
- 5921d12 Fixes #28 support https urls for metadata
822
- 95a2311 Fixes #29 which also supports Auth0 SAML
923
- 09591b6 Test InResponseTo on Assertions

Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ my %WriteMakefileArgs = (
7070
"URI::URL" => 0,
7171
"XML::LibXML::XPathContext" => 0
7272
},
73-
"VERSION" => "0.39",
73+
"VERSION" => "0.40",
7474
"test" => {
7575
"TESTS" => "t/*.t t/author/*.t"
7676
}

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.39
5+
version 0.40
66

77
SYNOPSIS
88
See TUTORIAL.md for implementation documentation and

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

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

0 commit comments

Comments
 (0)