Skip to content

Commit 9630745

Browse files
committed
Release Version 0.28
1 parent 9afd005 commit 9630745

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

Changes

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

3-
0.27 03-Jul-2020
3+
0.28 04-Jul-2020
4+
5+
Increment Version for official release
6+
7+
0.27-TRIAL 03-Jul-2020
48

59
Some overhaul of the Moose code and a couple of XML::Sig fixes
610
as well as a fix to work with Perl 5.10 (Upgrade please upgrade)

Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ my %WriteMakefileArgs = (
6969
"XML::LibXML" => 0,
7070
"XML::LibXML::XPathContext" => 0
7171
},
72-
"VERSION" => "0.26",
72+
"VERSION" => "0.28",
7373
"test" => {
7474
"TESTS" => "t/*.t t/author/*.t"
7575
}

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.27';
7+
our $VERSION = '0.28';
88
$VERSION = eval {$VERSION};
99

1010
=head1 NAME

lib/Net/SAML2/XML/Sig.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use warnings;
77
use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG);
88

99
$DEBUG = 0;
10-
$VERSION = '0.27';
10+
$VERSION = '0.28';
1111

1212
use base qw(Class::Accessor);
1313
Net::SAML2::XML::Sig->mk_accessors(qw(canonicalizer 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.27';
12+
$VERSION = '0.28';
1313

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

0 commit comments

Comments
 (0)