diff --git a/Changes b/Changes index ca120fc1..226d4f9f 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,47 @@ Revision history for Perl extension Net::SAML2. +0.33-TRIAL - 2021-03-28 + + [Significant Changes] + + - Mostly an improvement in documentation + - Implement "full client" test that follows TUTORIAL.md + - TUTORIAL.md documents how to add Net::SAML2 to your web application + - Numerous small bug fixes/enhancements + - Improvements in SP Metadata support + - Add response_status to Assertion object + - XML::Sig version 0.47 (improvements in ECDSA and DSA and other fixes) + + [Change Log] + + - TBD Update Changes and Increment version + - 7fabe59 Merge XML::Sig version 0.47 + - d62059f Add Keycloak as a tested SAML provider + - f626fc5 Sign releases + - 86eabae Remove space at eol + - 64c8862 Test requires URI::URL + - 664a0da Merge pull request #27 from timlegge/full-client + - ab7e344 Add missing files + - 971a951 Add missing metadat file + - 171fd63 Merge pull request #26 from timlegge/full-client + - cdfe47e Initial full client test + - 1b07070 Add response_status to Assertion object + - bcee1ea Clarify Net::SAML2::Binding::Redirect cert parameter + - fb126f2 Merge pull request #25 from timlegge/tutorial + - db801af Update pod information + - 1887f90 Fix invalid newlines inserted + - 840585a Update TUTORIAL.MD + - 2987c08 TUTORIAL missing closing tag + - c34dead Merge pull request #23 from timlegge/tutorial + - cf1ac4b Fixes #22 New tutorial for integrating Net::SAML2 in your application + - 67b9ab1 Merge pull request #21 from timlegge/issue19 + - 5377ecd Merge pull request #20 from timlegge/issue18 + - 339d5f9 Fixes #19: SP Metadata AuthnRequestsSigned and WantAssertionsSigned should be configurable + - 9944c41 Fixes #18 - SP metatdata org_url + - 305c587 Fixes #13 - ProviderName should be a variable + - 68629bd Fixes #14 Improve clarity of documentaion for Redirect + - 8c14615 Fixes #15 Documentation IdP Cert + 0.32 16-Jan-2022 Version 0.31-TRIAL with version incremented @@ -8,7 +50,7 @@ Revision history for Perl extension Net::SAML2. 1. Replace Crypt::OpenSSL::Verify509 2. Merge latest XML::Sig - TBD Update Changes and Increment version + 780de03 Update Changes and Increment version 0.31-TRIAL 15-Jan-2021 diff --git a/Makefile.PL b/Makefile.PL index 0d45e3ec..f32016ee 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -70,7 +70,7 @@ my %WriteMakefileArgs = ( "URI::URL" => 0, "XML::LibXML::XPathContext" => 0 }, - "VERSION" => "0.32", + "VERSION" => "0.33", "test" => { "TESTS" => "t/*.t t/author/*.t" } diff --git a/README.md b/README.md index b3b0c729..2ec6ede9 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Net::SAML2 # VERSION -version 0.26 +version 0.33 # SYNOPSIS diff --git a/lib/Net/SAML2.pm b/lib/Net/SAML2.pm index cceb6c66..7e343128 100644 --- a/lib/Net/SAML2.pm +++ b/lib/Net/SAML2.pm @@ -4,7 +4,7 @@ use warnings; require 5.008_001; -our $VERSION = '0.32'; +our $VERSION = '0.33'; $VERSION = eval {$VERSION}; =head1 NAME diff --git a/lib/Net/SAML2/XML/Util.pm b/lib/Net/SAML2/XML/Util.pm index 45ee6fc1..d662131f 100644 --- a/lib/Net/SAML2/XML/Util.pm +++ b/lib/Net/SAML2/XML/Util.pm @@ -9,7 +9,7 @@ use XML::Tidy; use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG); $DEBUG = 0; -$VERSION = '0.32'; +$VERSION = '0.33'; # We are exporting functions use base qw/Exporter/;