Skip to content

Commit 78ac40d

Browse files
authored
Merge pull request #216 from timlegge/release
A few pre-release fixes
2 parents 05ad9e3 + e0efd64 commit 78ac40d

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
lines changed

Makefile.PL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ my %WriteMakefileArgs = (
4848
"URI::Encode" => 0,
4949
"URI::Escape" => 0,
5050
"URI::QueryParam" => 0,
51-
"URN::OASIS::SAML2" => "0.003",
51+
"URN::OASIS::SAML2" => "0.004",
5252
"XML::Enc" => "0.13",
5353
"XML::Generator" => "1.13",
5454
"XML::LibXML" => 0,
@@ -124,7 +124,7 @@ my %FallbackPrereqs = (
124124
"URI::Encode" => 0,
125125
"URI::Escape" => 0,
126126
"URI::QueryParam" => 0,
127-
"URN::OASIS::SAML2" => "0.003",
127+
"URN::OASIS::SAML2" => "0.004",
128128
"XML::Enc" => "0.13",
129129
"XML::Generator" => "1.13",
130130
"XML::LibXML" => 0,

cpanfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ requires "URI" => "0";
3232
requires "URI::Encode" => "0";
3333
requires "URI::Escape" => "0";
3434
requires "URI::QueryParam" => "0";
35-
requires "URN::OASIS::SAML2" => "0.003";
35+
requires "URN::OASIS::SAML2" => "0.004";
3636
requires "XML::Enc" => "0.13";
3737
requires "XML::Generator" => "1.13";
3838
requires "XML::LibXML" => "0";

lib/Net/SAML2/Protocol/Artifact.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package Net::SAML2::Protocol::Artifact;
2+
use Moose;
23
# VERSION
34

4-
use Moose;
55
use MooseX::Types::DateTime qw/ DateTime /;
66
use DateTime::Format::XSD;
77
use Net::SAML2::XML::Util qw/ no_comments /;

lib/Net/SAML2/Protocol/LogoutResponse.pm

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package Net::SAML2::Protocol::LogoutResponse;
2+
use Moose;
23
# VERSION
34

4-
use Moose;
55
use MooseX::Types::URI qw/ Uri /;
66
use Net::SAML2::XML::Util qw/ no_comments /;
77
use Net::SAML2::Util qw/ deprecation_warning /;
@@ -83,12 +83,24 @@ around BUILDARGS => sub {
8383
return $self->$orig(%args);
8484
};
8585

86+
=head2 response_to()
87+
88+
Deprecated use B<in_response_to>
89+
90+
=cut
91+
8692
sub response_to {
8793
my $self = shift;
8894
deprecation_warning("Please use in_response_to instead of response_to");
8995
return $self->in_response_to;
9096
}
9197

98+
=head2 substatus()
99+
100+
Deprecated use B<sub_status>
101+
102+
=cut
103+
92104
sub substatus {
93105
my $self = shift;
94106
deprecation_warning("Please use sub_status instead of substatus");

lib/Net/SAML2/Role/ProtocolMessage.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package Net::SAML2::Role::ProtocolMessage;
2-
# VERSION
3-
42
use Moose::Role;
53

4+
# VERSION
5+
66
# ABSTRACT: Common behaviour for Protocol messages
77

88
use feature qw(state);

0 commit comments

Comments
 (0)