Skip to content

Commit ab8c986

Browse files
committed
Move to OurPkgVersion and remove VERSION from repo
1 parent 6d1b058 commit ab8c986

File tree

16 files changed

+23
-31
lines changed

16 files changed

+23
-31
lines changed

dist.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ filename = Changes
120120
first_version = 0.001 ; this is the default
121121
version_by_branch = 0 ; this is the default
122122
version_regexp = ^(0.\d+)$ ; this is the default
123-
[WriteVersion]
123+
[OurPkgVersion]
124124
[Git::Tag]
125125
tag_format = %V ; this is the default
126126
tag_message = %V ; this is the default

lib/Net/SAML2.pm

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
use strict;
22
use warnings;
33
package Net::SAML2;
4+
# VERSION
45

56
require 5.008_001;
67

78
# ABSTRACT: SAML2 bindings and protocol implementation
89

9-
our $VERSION = '0.53';
10-
$VERSION = eval {$VERSION};
11-
1210
=head1 NAME
1311
1412
Net::SAML2 - SAML bindings and protocol implementation

lib/Net/SAML2/Binding/POST.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
use strict;
22
use warnings;
33
package Net::SAML2::Binding::POST;
4+
# VERSION
45

56
use Moose;
67

7-
our $VERSION = '0.53';
8-
98
# ABSTRACT: Net::SAML2::Binding::POST - HTTP POST binding for SAML
109

1110
=head1 NAME

lib/Net/SAML2/Binding/Redirect.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
use strict;
22
use warnings;
33
package Net::SAML2::Binding::Redirect;
4+
# VERSION
45

56
use Moose;
67
use MooseX::Types::URI qw/ Uri /;
78

8-
our $VERSION = '0.53';
9-
109
# ABSTRACT: Net::SAML2::Binding::Redirect - HTTP Redirect binding for SAML
1110

1211
=head1 NAME

lib/Net/SAML2/Binding/SOAP.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
use strict;
22
use warnings;
33
package Net::SAML2::Binding::SOAP;
4+
# VERSION
5+
46
use Moose;
57
use MooseX::Types::URI qw/ Uri /;
68
use Net::SAML2::XML::Util qw/ no_comments /;
79

8-
our $VERSION = '0.53';
9-
1010
# ABSTRACT: Net::SAML2::Binding::Artifact - SOAP binding for SAML
1111

1212
=head1 NAME

lib/Net/SAML2/IdP.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
use strict;
22
use warnings;
33
package Net::SAML2::IdP;
4+
# VERSION
5+
46
use Moose;
57
use MooseX::Types::URI qw/ Uri /;
68

7-
our $VERSION = '0.53';
8-
99
# ABSTRACT: Net::SAML2::IdP - SAML Identity Provider object
1010

1111
=head1 NAME

lib/Net/SAML2/Protocol/ArtifactResolve.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
use strict;
22
use warnings;
33
package Net::SAML2::Protocol::ArtifactResolve;
4+
# VERSION
5+
46
use Moose;
57
use MooseX::Types::URI qw/ Uri /;
68

79
with 'Net::SAML2::Role::ProtocolMessage';
810

9-
our $VERSION = '0.53';
10-
1111
# ABSTRACT: Net::SAML2::Protocol::ArtifactResolve - ArtifactResolve protocol class
1212

1313
=head1 NAME

lib/Net/SAML2/Protocol/Assertion.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
use strict;
22
use warnings;
33
package Net::SAML2::Protocol::Assertion;
4+
# VERSION
5+
46
use Moose;
57
use MooseX::Types::DateTime qw/ DateTime /;
68
use MooseX::Types::Common::String qw/ NonEmptySimpleStr /;
@@ -14,8 +16,6 @@ use XML::LibXML;
1416

1517
with 'Net::SAML2::Role::ProtocolMessage';
1618

17-
our $VERSION = '0.53';
18-
1919
# ABSTRACT: Net::SAML2::Protocol::Assertion - SAML2 assertion object
2020

2121
=head1 NAME

lib/Net/SAML2/Protocol/AuthnRequest.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use strict;
22
use warnings;
33
package Net::SAML2::Protocol::AuthnRequest;
4+
# VERSION
45

56
use Moose;
67
use MooseX::Types::URI qw/ Uri /;
@@ -12,8 +13,6 @@ with 'Net::SAML2::Role::ProtocolMessage';
1213

1314
# ABSTRACT: SAML2 AuthnRequest object
1415

15-
our $VERSION = '0.53';
16-
1716
=head1 NAME
1817
1918
Net::SAML2::Protocol::AuthnRequest - SAML2 AuthnRequest object

lib/Net/SAML2/Protocol/LogoutRequest.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
use strict;
22
use warnings;
33
package Net::SAML2::Protocol::LogoutRequest;
4+
# VERSION
5+
46
use Moose;
57
use MooseX::Types::Common::String qw/ NonEmptySimpleStr /;
68
use MooseX::Types::URI qw/ Uri /;
@@ -11,8 +13,6 @@ with 'Net::SAML2::Role::ProtocolMessage';
1113

1214
# ABSTRACT: SAML2 LogoutRequest Protocol object
1315

14-
our $VERSION = '0.53';
15-
1616
=head1 NAME
1717
1818
Net::SAML2::Protocol::LogoutRequest - the SAML2 LogoutRequest object

0 commit comments

Comments
 (0)