[libnet-duo-perl] 07/12: Bump module versions to 1.01

Russ Allbery eagle at eyrie.org
Mon Jan 8 02:56:07 UTC 2018


This is an automated email from the git hooks/post-receive script.

rra pushed a commit to annotated tag release/1.01
in repository libnet-duo-perl.

commit b9417c4ba46f824f1f79719fe7d6bcabf14f82c2
Author: Russ Allbery <rra at cpan.org>
Date:   Sun Aug 16 17:33:27 2015

    Bump module versions to 1.01
---
 Build.PL                         | 2 +-
 lib/Net/Duo.pm                   | 2 +-
 lib/Net/Duo/Admin.pm             | 2 +-
 lib/Net/Duo/Admin/Group.pm       | 2 +-
 lib/Net/Duo/Admin/Integration.pm | 2 +-
 lib/Net/Duo/Admin/Phone.pm       | 2 +-
 lib/Net/Duo/Admin/Token.pm       | 2 +-
 lib/Net/Duo/Admin/User.pm        | 2 +-
 lib/Net/Duo/Auth.pm              | 2 +-
 lib/Net/Duo/Auth/Async.pm        | 2 +-
 lib/Net/Duo/Exception.pm         | 2 +-
 lib/Net/Duo/Mock/Agent.pm        | 2 +-
 lib/Net/Duo/Object.pm            | 2 +-
 13 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/Build.PL b/Build.PL
index ddb2546..15b35cb 100644
--- a/Build.PL
+++ b/Build.PL
@@ -35,7 +35,7 @@ my $build = Module::Build->new(
     module_name          => 'Net::Duo',
     dist_abstract        => 'API for Duo multifactor authentication service',
     dist_author          => 'Russ Allbery <rra at cpan.org>',
-    dist_version         => '1.00',
+    dist_version         => '1.01',
     license              => 'mit',
     recursive_test_files => 1,
 
diff --git a/lib/Net/Duo.pm b/lib/Net/Duo.pm
index 96a409a..1adc78c 100644
--- a/lib/Net/Duo.pm
+++ b/lib/Net/Duo.pm
@@ -10,7 +10,7 @@
 # specialized Perl modules implementing the specific Duo APIs, but it can also
 # be used directly to make generic API calls.
 
-package Net::Duo 1.00;
+package Net::Duo 1.01;
 
 use 5.014;
 use strict;
diff --git a/lib/Net/Duo/Admin.pm b/lib/Net/Duo/Admin.pm
index ad56d43..d4864c4 100644
--- a/lib/Net/Duo/Admin.pm
+++ b/lib/Net/Duo/Admin.pm
@@ -7,7 +7,7 @@
 # abstracts some of the API details, and throws rich exceptions rather than
 # requiring the caller deal with JSON data structures directly.
 
-package Net::Duo::Admin 1.00;
+package Net::Duo::Admin 1.01;
 
 use 5.014;
 use strict;
diff --git a/lib/Net/Duo/Admin/Group.pm b/lib/Net/Duo/Admin/Group.pm
index 7d47da6..9e5fcf8 100644
--- a/lib/Net/Duo/Admin/Group.pm
+++ b/lib/Net/Duo/Admin/Group.pm
@@ -3,7 +3,7 @@
 # This class wraps the Duo representation of a single Duo group, as returned
 # by (for example) the Admin /groups REST endpoint.
 
-package Net::Duo::Admin::Group 1.00;
+package Net::Duo::Admin::Group 1.01;
 
 use 5.014;
 use strict;
diff --git a/lib/Net/Duo/Admin/Integration.pm b/lib/Net/Duo/Admin/Integration.pm
index e8adf47..f8528ce 100644
--- a/lib/Net/Duo/Admin/Integration.pm
+++ b/lib/Net/Duo/Admin/Integration.pm
@@ -3,7 +3,7 @@
 # This class wraps the Duo representation of a single Duo integration, as
 # returned by (for example) the Admin /integrations REST endpoint.
 
-package Net::Duo::Admin::Integration 1.00;
+package Net::Duo::Admin::Integration 1.01;
 
 use 5.014;
 use strict;
diff --git a/lib/Net/Duo/Admin/Phone.pm b/lib/Net/Duo/Admin/Phone.pm
index c34f789..ccf10fe 100644
--- a/lib/Net/Duo/Admin/Phone.pm
+++ b/lib/Net/Duo/Admin/Phone.pm
@@ -3,7 +3,7 @@
 # This class wraps the Duo representation of a single Duo phone, as returned
 # by (for example) the Admin /phones REST endpoint.
 
-package Net::Duo::Admin::Phone 1.00;
+package Net::Duo::Admin::Phone 1.01;
 
 use 5.014;
 use strict;
diff --git a/lib/Net/Duo/Admin/Token.pm b/lib/Net/Duo/Admin/Token.pm
index a2f919e..6c05e8e 100644
--- a/lib/Net/Duo/Admin/Token.pm
+++ b/lib/Net/Duo/Admin/Token.pm
@@ -3,7 +3,7 @@
 # This class wraps the Duo representation of a single Duo token, as returned
 # by (for example) the Admin /tokens REST endpoint.
 
-package Net::Duo::Admin::Token 1.00;
+package Net::Duo::Admin::Token 1.01;
 
 use 5.014;
 use strict;
diff --git a/lib/Net/Duo/Admin/User.pm b/lib/Net/Duo/Admin/User.pm
index 5520833..673ee7d 100644
--- a/lib/Net/Duo/Admin/User.pm
+++ b/lib/Net/Duo/Admin/User.pm
@@ -3,7 +3,7 @@
 # This class wraps the Duo representation of a single Duo user, as returned by
 # (for example) the Admin /users REST endpoint.
 
-package Net::Duo::Admin::User 1.00;
+package Net::Duo::Admin::User 1.01;
 
 use 5.014;
 use strict;
diff --git a/lib/Net/Duo/Auth.pm b/lib/Net/Duo/Auth.pm
index bd988db..a7e7ddd 100644
--- a/lib/Net/Duo/Auth.pm
+++ b/lib/Net/Duo/Auth.pm
@@ -7,7 +7,7 @@
 # abstracts some of the API details, and throws rich exceptions rather than
 # requiring the caller deal with JSON data structures directly.
 
-package Net::Duo::Auth 1.00;
+package Net::Duo::Auth 1.01;
 
 use 5.014;
 use strict;
diff --git a/lib/Net/Duo/Auth/Async.pm b/lib/Net/Duo/Auth/Async.pm
index 47cacff..9dd7cbb 100644
--- a/lib/Net/Duo/Auth/Async.pm
+++ b/lib/Net/Duo/Auth/Async.pm
@@ -4,7 +4,7 @@
 # authentication and provides a method to long-poll the status of that
 # authentication attempt.
 
-package Net::Duo::Auth::Async 1.00;
+package Net::Duo::Auth::Async 1.01;
 
 use 5.014;
 use strict;
diff --git a/lib/Net/Duo/Exception.pm b/lib/Net/Duo/Exception.pm
index 221e72f..d0494d5 100644
--- a/lib/Net/Duo/Exception.pm
+++ b/lib/Net/Duo/Exception.pm
@@ -8,7 +8,7 @@
 # details, it provides a stringification that is suitable for simple error
 # messages.
 
-package Net::Duo::Exception 1.00;
+package Net::Duo::Exception 1.01;
 
 use 5.014;
 use strict;
diff --git a/lib/Net/Duo/Mock/Agent.pm b/lib/Net/Duo/Mock/Agent.pm
index 5afb6e7..4b03e7c 100644
--- a/lib/Net/Duo/Mock/Agent.pm
+++ b/lib/Net/Duo/Mock/Agent.pm
@@ -9,7 +9,7 @@
 # predictable number of test results.  This means that any calling test
 # program should probably not specify a plan and instead use done_testing().
 
-package Net::Duo::Mock::Agent 1.00;
+package Net::Duo::Mock::Agent 1.01;
 
 use 5.014;
 use strict;
diff --git a/lib/Net/Duo/Object.pm b/lib/Net/Duo/Object.pm
index 5e5ded5..79d3683 100644
--- a/lib/Net/Duo/Object.pm
+++ b/lib/Net/Duo/Object.pm
@@ -10,7 +10,7 @@
 # of constructing an object from decoded JSON data and building the accessors
 # automatically from a field specification.
 
-package Net::Duo::Object 1.00;
+package Net::Duo::Object 1.01;
 
 use 5.014;
 use strict;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libnet-duo-perl.git



More information about the Pkg-perl-cvs-commits mailing list