Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 147d85e

Browse files
committed
0.97
1 parent 261852f commit 147d85e

17 files changed

+20
-16
lines changed

Changes

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ Revision history for Net-GitHub
22

33
{{$NEXT}}
44

5+
0.97 2020-03-18 09:21:16 CST
6+
- Fetch rate limit if it is not set. (toddr)
7+
58
0.96 2020-03-06 15:39:32 CST
69
- add support for deprecation warnings #92 (grantm)
710

META.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"web" : "https://github.com/fayland/perl-net-github"
7171
}
7272
},
73-
"version" : "0.96",
73+
"version" : "0.97",
7474
"x_contributors" : [
7575
"Alan Berndt <[email protected]>",
7676
"Alex Muntada <[email protected]>",
@@ -116,6 +116,7 @@
116116
"sunnavy <[email protected]>",
117117
"Tim Vroom <[email protected]>",
118118
"Todd Rinaldo <[email protected]>",
119+
"Todd Rinaldo <[email protected]>",
119120
"unknown <Administrator@.(none)>",
120121
"Vincent Lequertier <[email protected]>",
121122
"Will Orr <[email protected]>",

Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ my %WriteMakefileArgs = (
3030
"TEST_REQUIRES" => {
3131
"Test::More" => 0
3232
},
33-
"VERSION" => "0.96",
33+
"VERSION" => "0.97",
3434
"test" => {
3535
"TESTS" => "t/*.t"
3636
}

lib/Net/GitHub.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Net::GitHub;
22

33
use Net::GitHub::V3;
44

5-
our $VERSION = '0.96';
5+
our $VERSION = '0.97';
66
our $AUTHORITY = 'cpan:FAYLAND';
77

88
sub new {

lib/Net/GitHub/V3.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Net::GitHub::V3;
33
use Moo;
44
use Types::Standard qw(InstanceOf);
55

6-
our $VERSION = '0.96';
6+
our $VERSION = '0.97';
77
our $AUTHORITY = 'cpan:FAYLAND';
88

99
with 'Net::GitHub::V3::Query';

lib/Net/GitHub/V3/Events.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Events;
22

33
use Moo;
44

5-
our $VERSION = '0.96';
5+
our $VERSION = '0.97';
66
our $AUTHORITY = 'cpan:FAYLAND';
77

88
use URI::Escape;

lib/Net/GitHub/V3/Gists.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Gists;
22

33
use Moo;
44

5-
our $VERSION = '0.96';
5+
our $VERSION = '0.97';
66
our $AUTHORITY = 'cpan:FAYLAND';
77

88
use URI::Escape;

lib/Net/GitHub/V3/GitData.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Net::GitHub::V3::GitData;
22

33
use Moo;
44

5-
our $VERSION = '0.96';
5+
our $VERSION = '0.97';
66
our $AUTHORITY = 'cpan:FAYLAND';
77

88
use URI::Escape;

lib/Net/GitHub/V3/Gitignore.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Gitignore;
22

33
use Moo;
44

5-
our $VERSION = '0.96';
5+
our $VERSION = '0.97';
66
our $AUTHORITY = 'cpan:FAYLAND';
77

88
use URI::Escape;

lib/Net/GitHub/V3/Issues.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Issues;
22

33
use Moo;
44

5-
our $VERSION = '0.96';
5+
our $VERSION = '0.97';
66
our $AUTHORITY = 'cpan:FAYLAND';
77

88
use URI::Escape;

lib/Net/GitHub/V3/OAuth.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Net::GitHub::V3::OAuth;
22

33
use Moo;
44

5-
our $VERSION = '0.96';
5+
our $VERSION = '0.97';
66
our $AUTHORITY = 'cpan:FAYLAND';
77

88
use URI::Escape;

lib/Net/GitHub/V3/PullRequests.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Net::GitHub::V3::PullRequests;
22

33
use Moo;
44

5-
our $VERSION = '0.96';
5+
our $VERSION = '0.97';
66
our $AUTHORITY = 'cpan:FAYLAND';
77

88
use URI;

lib/Net/GitHub/V3/Query.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Net::GitHub::V3::Query;
22

3-
our $VERSION = '0.96';
3+
our $VERSION = '0.97';
44
our $AUTHORITY = 'cpan:FAYLAND';
55

66
use URI;

lib/Net/GitHub/V3/Repos.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Repos;
22

33
use Moo;
44

5-
our $VERSION = '0.96';
5+
our $VERSION = '0.97';
66
our $AUTHORITY = 'cpan:FAYLAND';
77

88
use Carp;

lib/Net/GitHub/V3/ResultSet.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Net::GitHub::V3::ResultSet;
22

3-
our $VERSION = '0.96';
3+
our $VERSION = '0.97';
44
our $AUTHORITY = 'cpan:FAYLAND';
55

66
use Types::Standard qw(Int Str ArrayRef Bool);

lib/Net/GitHub/V3/Users.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Net::GitHub::V3::Users;
22

33
use Moo;
44

5-
our $VERSION = '0.96';
5+
our $VERSION = '0.97';
66
our $AUTHORITY = 'cpan:FAYLAND';
77

88
use URI::Escape;

lib/Net/GitHub/V4.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Net::GitHub::V4;
22

33
use Moo;
44

5-
our $VERSION = '0.96';
5+
our $VERSION = '0.97';
66
our $AUTHORITY = 'cpan:FAYLAND';
77

88
use URI;

0 commit comments

Comments
 (0)