Skip to content

Commit b34f4f8

Browse files
committed
Update Changes and Increment version
1 parent 5921d12 commit b34f4f8

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

Changes

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

3+
0.39-TRIAL - 2021-07-25
4+
5+
[Change Log]
6+
- TBD Update Changes and Increment version
7+
- 5921d12 Fixes #28 support https urls for metadata
8+
- 95a2311 Fixes #29 which also supports Auth0 SAML
9+
- 09591b6 Test InResponseTo on Assertions
10+
311
0.38 - 2021-07-23
412

513
[Change Log]
614

7-
- TBD Update Changes and Increment version
15+
- 88abdeb Update Changes and Increment version
816

917
0.37-TRIAL - 2021-07-21
1018

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.38",
73+
"VERSION" => "0.39",
7474
"test" => {
7575
"TESTS" => "t/*.t t/author/*.t"
7676
}

README

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

44
VERSION
5-
version 0.38
5+
version 0.39
66

77
SYNOPSIS
88
# generate a redirect off to the IdP:
@@ -76,7 +76,7 @@ DESCRIPTION
7676
Jump
7777
Mircosoft ADFS
7878
Keycloak
79-
Auth0 (requires Net::SAML2 >=0.38)
79+
Auth0 (requires Net::SAML2 >=0.39)
8080

8181
NAME
8282
Net::SAML2 - SAML bindings and protocol implementation

lib/Net/SAML2.pm

+2-2
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.38';
7+
our $VERSION = '0.39';
88
$VERSION = eval {$VERSION};
99

1010
=head1 NAME
@@ -93,7 +93,7 @@ Identity Providers (IdPs). It has been tested against:
9393
9494
=item Keycloak
9595
96-
=item Auth0 (requires Net::SAML2 >=0.38)
96+
=item Auth0 (requires Net::SAML2 >=0.39)
9797
9898
=back
9999

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

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

0 commit comments

Comments
 (0)