Skip to content

Commit

Permalink
add Try::Tiny to Makefile.PL
Browse files Browse the repository at this point in the history
not core, hence...
  • Loading branch information
leejo committed Jun 25, 2015
1 parent 415b4bf commit faf8703
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,6 +1,6 @@
Revision history for Mojolicious-Plugin-OAuth2-Server

0.21 2015-06-25
0.22 2015-06-25
- auth codes, access tokens, and refresh tokens returned can now be
JWTs (implemented via Mojo::JWT). this allows validation without
database lookup *should you want to do that*
Expand Down
1 change: 1 addition & 0 deletions Makefile.PL
Expand Up @@ -18,6 +18,7 @@ WriteMakefile(
'Carp' => 0,
'CryptX' => '0.021',
'Mojo::JWT' => '0.04',
'Try::Tiny' => '0.22',
},
BUILD_REQUIRES => {
'FindBin' => 0,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -11,7 +11,7 @@ Authorization Server / Resource Server with Mojolicious

# VERSION

0.20
0.22

# SYNOPSIS

Expand Down
4 changes: 2 additions & 2 deletions lib/Mojolicious/Plugin/OAuth2/Server.pm
Expand Up @@ -11,7 +11,7 @@ Authorization Server / Resource Server with Mojolicious
=head1 VERSION
0.21
0.22
=head1 SYNOPSIS
Expand Down Expand Up @@ -218,7 +218,7 @@ use Carp qw/ croak /;
use Crypt::PRNG qw/ random_string /;
use Try::Tiny;

our $VERSION = '0.21';
our $VERSION = '0.22';

my %CLIENTS;
my %AUTH_CODES;
Expand Down

0 comments on commit faf8703

Please sign in to comment.