From ab5418dacd40dbe0cb29759a833e6a2df27232ef Mon Sep 17 00:00:00 2001 From: Timothy Legge Date: Tue, 19 May 2020 23:39:31 +0000 Subject: [PATCH] Update Changes and increment the version --- Changes | 22 ++++++++++++++++++++++ lib/Net/SAML2.pm | 2 +- lib/Net/SAML2/XML/Sig.pm | 2 +- lib/Net/SAML2/XML/Util.pm | 2 +- 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 9174826..4cfb07d 100644 --- a/Changes +++ b/Changes @@ -162,3 +162,25 @@ Revision history for Perl extension Net::SAML2. 6fb076c Create README.md 963d871 (tag: 0.20.03-TRIAL) Add dist.ini f4232c2 Update changes for 0.20.03 TRIAL + +0.25 TBD + + What happened to version v0.21 to v0.24? + + The version of the embeded XML::Sig was higher that that of Net::SAML2 + which causes some issues in packaging so this release simply skipped the + versions 0.21 to 0.24. Not much else to say + + Minor changes for the most part but a requested release based on the + removal of XML::Cannonical. In fact that could be the only functionality + change present. + + 80db64d Add provides section of META + 8b39923 Add github action to test build + 38b05fd Make t/author/podcoverage.t a developer only test + 7473f54 XML::Canonical was removed as an option due to its age + 50d4314 t/09-authn-request.t: update tests for signed requests + bf07c83 Generate META.json via dist.ini + cac4ad7 Add missing pod info for Protocol/ArtifactResolve.pm + b260946 Update README.md + diff --git a/lib/Net/SAML2.pm b/lib/Net/SAML2.pm index 8723a44..a65191b 100644 --- a/lib/Net/SAML2.pm +++ b/lib/Net/SAML2.pm @@ -4,7 +4,7 @@ use warnings; require 5.008_001; -our $VERSION = '0.20'; +our $VERSION = '0.25'; $VERSION = eval {$VERSION}; =head1 NAME diff --git a/lib/Net/SAML2/XML/Sig.pm b/lib/Net/SAML2/XML/Sig.pm index 14c360d..f66b6a8 100644 --- a/lib/Net/SAML2/XML/Sig.pm +++ b/lib/Net/SAML2/XML/Sig.pm @@ -7,7 +7,7 @@ use warnings; use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG); $DEBUG = 0; -$VERSION = '0.24'; +$VERSION = '0.25'; use base qw(Class::Accessor); Net::SAML2::XML::Sig->mk_accessors(qw(canonicalizer key)); diff --git a/lib/Net/SAML2/XML/Util.pm b/lib/Net/SAML2/XML/Util.pm index fa22910..db3c163 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.20'; +$VERSION = '0.25'; # We are exporting functions use base qw/Exporter/;