Skip to content

Commit 6a03758

Browse files
committed
Update Changes and Increment version
1 parent 08e1a17 commit 6a03758

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

Changes

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
Revision history for Perl extension Net::SAML2.
22

3+
0.29 12-Jan-2021
4+
5+
Small release to update issues location to be github
6+
7+
TBD Update Changes and Increment version
8+
08e1a17 Fixes #7 - Move issues to github
9+
310
0.28 04-Jul-2020
411

512
Increment Version for official release
613

14+
3cffcc7 Merge pull request #6 from perl-net-saml2/v0.27-prep
15+
9630745 (tag: 0.28, upstream/v0.27-prep) Release Version 0.28
16+
717
0.27-TRIAL 03-Jul-2020
818

919
Some overhaul of the Moose code and a couple of XML::Sig fixes
@@ -12,8 +22,11 @@ Revision history for Perl extension Net::SAML2.
1222
As a point of interest the external XML::Sig module has been updated
1323
and is now capable of replacing Net::SAML2::XML::Sig
1424

15-
eac8408 Update Changes
16-
9352be7 Add contributing info
25+
9afd005 Increment version to 0.27
26+
ccba8d8 Update Changes for v0.27
27+
82ed211 Update Changes
28+
5fe44e3 Add contributing info
29+
e9c3fa8 Improve GitHub Action and reduce time required
1730
2ecbc2b Use default Moose types instead of MooseX::Types::Moose
1831
ecee8bf Add predicates to Net::SAML2::Protocol::AuthnRequest
1932
7562ff1 Make use of builders instead of using BUILDARGS

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.28",
72+
"VERSION" => "0.29",
7373
"test" => {
7474
"TESTS" => "t/*.t t/author/*.t"
7575
}

cpanfile

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# Do not edit this file directly. To change prereqs, edit the `dist.ini` file.
2-
31
requires "Carp" => "0";
42
requires "Class::Accessor" => "0";
53
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.28';
7+
our $VERSION = '0.29';
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.28';
10+
$VERSION = '0.29';
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.28';
12+
$VERSION = '0.29';
1313

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

0 commit comments

Comments
 (0)