summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFayland Lam <fayland@gmail.com>2022-10-03 11:22:40 +0800
committerFayland Lam <fayland@gmail.com>2022-10-03 11:22:40 +0800
commitd74bc63b376e9b25a1cc11e9c522ff1affe08359 (patch)
treeb526f3d45fff37f2347b0b95ad52afa6afd1abec
parente53b32d1c386bb4e95c22b5a85defc498fed80db (diff)
1.05
-rw-r--r--Changes3
-rw-r--r--META.json2
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Net/GitHub.pm2
-rw-r--r--lib/Net/GitHub/V3.pm2
-rw-r--r--lib/Net/GitHub/V3/Actions.pm2
-rw-r--r--lib/Net/GitHub/V3/Events.pm2
-rw-r--r--lib/Net/GitHub/V3/Gists.pm2
-rw-r--r--lib/Net/GitHub/V3/GitData.pm2
-rw-r--r--lib/Net/GitHub/V3/Gitignore.pm2
-rw-r--r--lib/Net/GitHub/V3/Issues.pm2
-rw-r--r--lib/Net/GitHub/V3/OAuth.pm2
-rw-r--r--lib/Net/GitHub/V3/PullRequests.pm2
-rw-r--r--lib/Net/GitHub/V3/Query.pm2
-rw-r--r--lib/Net/GitHub/V3/Repos.pm2
-rw-r--r--lib/Net/GitHub/V3/ResultSet.pm2
-rw-r--r--lib/Net/GitHub/V3/Users.pm2
-rw-r--r--lib/Net/GitHub/V4.pm2
18 files changed, 20 insertions, 17 deletions
diff --git a/Changes b/Changes
index e913c7a..9a061cf 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ Revision history for Net-GitHub
{{$NEXT}}
+1.05 2022-10-03 11:22:28 CST
+ - no code changes
+
1.04 2022-10-03 11:20:30 CST
- branch protection (jrmash)
diff --git a/META.json b/META.json
index d99bce5..dd53e58 100644
--- a/META.json
+++ b/META.json
@@ -70,7 +70,7 @@
"web" : "https://github.com/fayland/perl-net-github"
}
},
- "version" : "1.04",
+ "version" : "1.05",
"x_contributors" : [
"Alan Berndt <alan@eatabrick.org>",
"Alex Muntada <alexm@alexm.org>",
diff --git a/Makefile.PL b/Makefile.PL
index 17e3452..2072d67 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -30,7 +30,7 @@ my %WriteMakefileArgs = (
"TEST_REQUIRES" => {
"Test::More" => 0
},
- "VERSION" => "1.04",
+ "VERSION" => "1.05",
"test" => {
"TESTS" => "t/*.t"
}
diff --git a/lib/Net/GitHub.pm b/lib/Net/GitHub.pm
index e7a764b..5dd9fd3 100644
--- a/lib/Net/GitHub.pm
+++ b/lib/Net/GitHub.pm
@@ -2,7 +2,7 @@ package Net::GitHub;
use Net::GitHub::V3;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
sub new {
diff --git a/lib/Net/GitHub/V3.pm b/lib/Net/GitHub/V3.pm
index c6a8c66..9c9756a 100644
--- a/lib/Net/GitHub/V3.pm
+++ b/lib/Net/GitHub/V3.pm
@@ -3,7 +3,7 @@ package Net::GitHub::V3;
use Moo;
use Types::Standard qw(InstanceOf);
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
with 'Net::GitHub::V3::Query';
diff --git a/lib/Net/GitHub/V3/Actions.pm b/lib/Net/GitHub/V3/Actions.pm
index 1defb0a..a137bb5 100644
--- a/lib/Net/GitHub/V3/Actions.pm
+++ b/lib/Net/GitHub/V3/Actions.pm
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Actions;
use Moo;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use Carp;
diff --git a/lib/Net/GitHub/V3/Events.pm b/lib/Net/GitHub/V3/Events.pm
index 0266df2..867ad3f 100644
--- a/lib/Net/GitHub/V3/Events.pm
+++ b/lib/Net/GitHub/V3/Events.pm
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Events;
use Moo;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V3/Gists.pm b/lib/Net/GitHub/V3/Gists.pm
index 5d173a9..96e6634 100644
--- a/lib/Net/GitHub/V3/Gists.pm
+++ b/lib/Net/GitHub/V3/Gists.pm
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Gists;
use Moo;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V3/GitData.pm b/lib/Net/GitHub/V3/GitData.pm
index eacbccc..dd9254f 100644
--- a/lib/Net/GitHub/V3/GitData.pm
+++ b/lib/Net/GitHub/V3/GitData.pm
@@ -2,7 +2,7 @@ package Net::GitHub::V3::GitData;
use Moo;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V3/Gitignore.pm b/lib/Net/GitHub/V3/Gitignore.pm
index 97be925..1a4784d 100644
--- a/lib/Net/GitHub/V3/Gitignore.pm
+++ b/lib/Net/GitHub/V3/Gitignore.pm
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Gitignore;
use Moo;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V3/Issues.pm b/lib/Net/GitHub/V3/Issues.pm
index 9feee98..3e4267d 100644
--- a/lib/Net/GitHub/V3/Issues.pm
+++ b/lib/Net/GitHub/V3/Issues.pm
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Issues;
use Moo;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V3/OAuth.pm b/lib/Net/GitHub/V3/OAuth.pm
index 146d4a9..3916380 100644
--- a/lib/Net/GitHub/V3/OAuth.pm
+++ b/lib/Net/GitHub/V3/OAuth.pm
@@ -2,7 +2,7 @@ package Net::GitHub::V3::OAuth;
use Moo;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V3/PullRequests.pm b/lib/Net/GitHub/V3/PullRequests.pm
index d756f00..92c0459 100644
--- a/lib/Net/GitHub/V3/PullRequests.pm
+++ b/lib/Net/GitHub/V3/PullRequests.pm
@@ -2,7 +2,7 @@ package Net::GitHub::V3::PullRequests;
use Moo;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use URI;
diff --git a/lib/Net/GitHub/V3/Query.pm b/lib/Net/GitHub/V3/Query.pm
index 954e233..3326008 100644
--- a/lib/Net/GitHub/V3/Query.pm
+++ b/lib/Net/GitHub/V3/Query.pm
@@ -1,6 +1,6 @@
package Net::GitHub::V3::Query;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use URI;
diff --git a/lib/Net/GitHub/V3/Repos.pm b/lib/Net/GitHub/V3/Repos.pm
index f9cbc90..df4136c 100644
--- a/lib/Net/GitHub/V3/Repos.pm
+++ b/lib/Net/GitHub/V3/Repos.pm
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Repos;
use Moo;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use Carp;
diff --git a/lib/Net/GitHub/V3/ResultSet.pm b/lib/Net/GitHub/V3/ResultSet.pm
index 3d6925f..617504c 100644
--- a/lib/Net/GitHub/V3/ResultSet.pm
+++ b/lib/Net/GitHub/V3/ResultSet.pm
@@ -1,6 +1,6 @@
package Net::GitHub::V3::ResultSet;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use Types::Standard qw(Int Str ArrayRef Bool);
diff --git a/lib/Net/GitHub/V3/Users.pm b/lib/Net/GitHub/V3/Users.pm
index 68a6006..5147287 100644
--- a/lib/Net/GitHub/V3/Users.pm
+++ b/lib/Net/GitHub/V3/Users.pm
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Users;
use Moo;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V4.pm b/lib/Net/GitHub/V4.pm
index 52a8a39..7d8d025 100644
--- a/lib/Net/GitHub/V4.pm
+++ b/lib/Net/GitHub/V4.pm
@@ -2,7 +2,7 @@ package Net::GitHub::V4;
use Moo;
-our $VERSION = '1.04';
+our $VERSION = '1.05';
our $AUTHORITY = 'cpan:FAYLAND';
use URI;