summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFayland Lam <fayland@gmail.com>2022-10-03 11:21:16 +0800
committerFayland Lam <fayland@gmail.com>2022-10-03 11:21:26 +0800
commite53b32d1c386bb4e95c22b5a85defc498fed80db (patch)
tree0e40a3ec3c8bc8557b1616f56cba8da684865e7c
parent04073f420d4b9f85195bcde812bc1176398762a5 (diff)
1.04
-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 4dc0243..e913c7a 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ Revision history for Net-GitHub
{{$NEXT}}
+1.04 2022-10-03 11:20:30 CST
+ - branch protection (jrmash)
+
1.03 2022-04-17 12:27:12 CST
- revert #102
- merge #111 (PF4Public)
diff --git a/META.json b/META.json
index fd5c0cc..d99bce5 100644
--- a/META.json
+++ b/META.json
@@ -70,7 +70,7 @@
"web" : "https://github.com/fayland/perl-net-github"
}
},
- "version" : "1.03",
+ "version" : "1.04",
"x_contributors" : [
"Alan Berndt <alan@eatabrick.org>",
"Alex Muntada <alexm@alexm.org>",
diff --git a/Makefile.PL b/Makefile.PL
index fc38f5f..17e3452 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -30,7 +30,7 @@ my %WriteMakefileArgs = (
"TEST_REQUIRES" => {
"Test::More" => 0
},
- "VERSION" => "1.03",
+ "VERSION" => "1.04",
"test" => {
"TESTS" => "t/*.t"
}
diff --git a/lib/Net/GitHub.pm b/lib/Net/GitHub.pm
index 04c874f..e7a764b 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
sub new {
diff --git a/lib/Net/GitHub/V3.pm b/lib/Net/GitHub/V3.pm
index ff0f703..c6a8c66 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.03';
+our $VERSION = '1.04';
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 4515677..1defb0a 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
use Carp;
diff --git a/lib/Net/GitHub/V3/Events.pm b/lib/Net/GitHub/V3/Events.pm
index 71558d0..0266df2 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V3/Gists.pm b/lib/Net/GitHub/V3/Gists.pm
index 6b5c196..5d173a9 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V3/GitData.pm b/lib/Net/GitHub/V3/GitData.pm
index b742ae4..eacbccc 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V3/Gitignore.pm b/lib/Net/GitHub/V3/Gitignore.pm
index b1c6e76..97be925 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V3/Issues.pm b/lib/Net/GitHub/V3/Issues.pm
index 7da91c3..9feee98 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V3/OAuth.pm b/lib/Net/GitHub/V3/OAuth.pm
index c6c90b9..146d4a9 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V3/PullRequests.pm b/lib/Net/GitHub/V3/PullRequests.pm
index 2c78e63..d756f00 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
use URI;
diff --git a/lib/Net/GitHub/V3/Query.pm b/lib/Net/GitHub/V3/Query.pm
index f25041c..954e233 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
use URI;
diff --git a/lib/Net/GitHub/V3/Repos.pm b/lib/Net/GitHub/V3/Repos.pm
index 3346963..f9cbc90 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
use Carp;
diff --git a/lib/Net/GitHub/V3/ResultSet.pm b/lib/Net/GitHub/V3/ResultSet.pm
index 2aab104..3d6925f 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.03';
+our $VERSION = '1.04';
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 23b8817..68a6006 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
use URI::Escape;
diff --git a/lib/Net/GitHub/V4.pm b/lib/Net/GitHub/V4.pm
index 4cb93f7..52a8a39 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.03';
+our $VERSION = '1.04';
our $AUTHORITY = 'cpan:FAYLAND';
use URI;