Skip to content

Commit 929894c

Browse files
committed
Update Changes and Increment version
1 parent ccaa892 commit 929894c

File tree

6 files changed

+27
-5
lines changed

6 files changed

+27
-5
lines changed

Changes

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

3+
0.30-TRIAL 13-Jan-2021
4+
5+
Significant Changes
6+
7+
1. Replace Crypt::OpenSSL::Verify
8+
2. Merge latest XML::Sig
9+
10+
Warning: This release require the installation of Crypt::OpenSSL::Verify.
11+
12+
TBD Update Changes and Increment version
13+
ccaa892 Remove the installation of Crypt::OpenSSL::VerifyX509 from action
14+
36d0a5c Move to Crypt-OpenSSL-Verify as Crypt-OpenSSL-Verify is not supported
15+
af050d5 Merge pull request #8 from timlegge/merge-xml-sig
16+
91208a2 Update dependencies for Net::SAML2::XML::Sig
17+
359a0bd Merge XML::Sig version 0.39
18+
200c0ae Update some documentation details
19+
ed3c265 Merge XML::Sig version 0.38
20+
dfefef6 Remove XML::Lib added XML Declaration from Signed XML
21+
a39774f Copy updated XML::Sig and update name and version
22+
323
0.29 12-Jan-2021
424

525
Small release to update issues location to be github
626

7-
TBD Update Changes and Increment version
27+
6a03758 Update Changes and Increment version
828
08e1a17 Fixes #7 - Move issues to github
929

1030
0.28 04-Jul-2020

Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ my %WriteMakefileArgs = (
6868
"Test::Pod::Coverage" => "1.04",
6969
"XML::LibXML::XPathContext" => 0
7070
},
71-
"VERSION" => "0.29",
71+
"VERSION" => "0.30",
7272
"test" => {
7373
"TESTS" => "t/*.t t/author/*.t"
7474
}

cpanfile

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Do not edit this file directly. To change prereqs, edit the `dist.ini` file.
2+
13
requires "Carp" => "0";
24
requires "Class::Accessor" => "0";
35
requires "Crypt::OpenSSL::Bignum" => "0";

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.29';
7+
our $VERSION = '0.30';
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.39';
39-
$VERSION = '0.29';
39+
$VERSION = '0.30';
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.29';
12+
$VERSION = '0.30';
1313

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

0 commit comments

Comments
 (0)