diff --git a/Changes b/Changes index fe5cf6b..efa7287 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Mojolicious-Plugin-OAuth2-Server +0.08 2015-02-12 + - stipulate CryptX in the Makefile.PL rather than Crypt::PRNG, as the + latter doesn't have a VERSION number so causes dependency check to + fail (thanks to reneeb for the report/fix) + - some tweaks in examples + 0.07 2015-02-11 - call verify_client before redirecting to login / confirm scopes as there's no point logging a user in, etc, if the client is bad diff --git a/README.md b/README.md index 2a5848c..c9427a7 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Authorization Server / Resource Server with Mojolicious # VERSION -0.07 +0.08 # SYNOPSIS diff --git a/lib/Mojolicious/Plugin/OAuth2/Server.pm b/lib/Mojolicious/Plugin/OAuth2/Server.pm index 80af7e9..721382e 100644 --- a/lib/Mojolicious/Plugin/OAuth2/Server.pm +++ b/lib/Mojolicious/Plugin/OAuth2/Server.pm @@ -11,7 +11,7 @@ Authorization Server / Resource Server with Mojolicious =head1 VERSION -0.07 +0.08 =head1 SYNOPSIS @@ -197,7 +197,7 @@ use MIME::Base64 qw/ encode_base64 decode_base64 /; use Carp qw/ croak /; use Crypt::PRNG qw/ random_string /; -our $VERSION = '0.07'; +our $VERSION = '0.08'; my %CLIENTS; my %AUTH_CODES;