Skip to content

Commit 1ef0848

Browse files
committed
Update Changes and Increment version
1 parent 844d0be commit 1ef0848

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
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.34 - 2021-03-30
4+
5+
[Significant Changes since 0.32]
6+
7+
- Mostly an improvement in documentation
8+
- Implement "full client" test that follows TUTORIAL.md
9+
- TUTORIAL.md documents how to add Net::SAML2 to your web application
10+
- Numerous small bug fixes/enhancements
11+
- Improvements in SP Metadata support
12+
- Add response_status to Assertion object
13+
- XML::Sig version 0.47 (improvements in ECDSA and DSA and other fixes)
14+
15+
[Change Log]
16+
17+
- TBD Update Changes and Increment version
18+
319
0.33-TRIAL - 2021-03-28
420

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

1531
[Change Log]
1632

17-
- TBD Update Changes and Increment version
33+
- 844d0be Update Changes and Increment version
1834
- 7fabe59 Merge XML::Sig version 0.47
1935
- d62059f Add Keycloak as a tested SAML provider
2036
- f626fc5 Sign releases

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

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

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

0 commit comments

Comments
 (0)