diff --git a/Changes b/Changes index e3f3fd2..211b226 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,18 @@ Revision history for XML-Sig -0.44 - 2021-03-20 +0.45 - 2021-03-20 + [Significant features implemented since 0.43] + + - Re-enable Perl 5.8 support + - Support for DSA 2048-bit and 3072-bit keys and signatures + - Allow verification of DSA signed XML using X509Certificate + + [Full Change Log] + + - TBD Update Changes and Increment version + + +0.44-TRIAL - 2021-03-20 [Significant features implemented] @@ -8,9 +20,9 @@ Revision history for XML-Sig - Allow verification of DSA signed XML using X509Certificate [Full Change Log] - - 52b6239 Update Changes and Increment version - - cde2eb7 Missed dist.ini in Crypt::OpenSSL::DSA 0.20 commit - - 8b88406 Fix author in dist.ini to match spec + - a1cbb96 Update Changes and Increment version + - 48a9f63 Missed dist.ini in Crypt::OpenSSL::DSA 0.20 commit + - ba5dd7c Fix author in dist.ini to match spec - 7979049 Merge pull request #29 from perl-net-saml2/dsa2048 - d020cad Requires Crypt:OpenSSL::DSA 0.20 - fb6ebc9 Re-enable Perl 5.8 support diff --git a/Makefile.PL b/Makefile.PL index 382e1bb..75c7a43 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -39,7 +39,7 @@ my %WriteMakefileArgs = ( "Test::Exception" => 0, "Test::More" => 0 }, - "VERSION" => "0.44", + "VERSION" => "0.45", "test" => { "TESTS" => "t/*.t" } diff --git a/lib/XML/Sig.pm b/lib/XML/Sig.pm index ce88b5a..7318894 100644 --- a/lib/XML/Sig.pm +++ b/lib/XML/Sig.pm @@ -35,7 +35,7 @@ it -- all in accordance with the W3C standard governing XML signatures. use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG); $DEBUG = 0; -$VERSION = '0.44'; +$VERSION = '0.45'; use base qw(Class::Accessor); XML::Sig->mk_accessors(qw(key));