From: Marius Gavrilescu Date: Sat, 15 Jul 2017 15:55:07 +0000 (+0300) Subject: Bump version and update Changes X-Git-Tag: 0.003^0 X-Git-Url: http://git.ieval.ro/?p=plack-middleware-auth-complex.git;a=commitdiff_plain;h=efd95ac23da5a640f92b86c77ff0e933998d2bbc Bump version and update Changes --- diff --git a/Changes b/Changes index 3667e69..893850b 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Perl extension Plack::Middleware::Auth::Complex. +0.003 2017-07-15T16:55+01:00 + - Use Data::Entropy instead of Bytes::Random::Secure (since + Authen::Passphrase already uses Data::Entropy) + - Add support for the scrypt password hashing algorithm using + Authen::Passphrase::Scrypt + 0.002 2017-03-25T21:13+03:00 - Prevent blocking (use /dev/urandom instead of /dev/random) - Add a script to change user password (/usr/bin/passwd lookalike) diff --git a/README b/README index 6f25098..be328ad 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Plack-Middleware-Auth-Complex version 0.002 +Plack-Middleware-Auth-Complex version 0.003 =========================================== AuthComplex is an authentication system for Plack applications that @@ -29,9 +29,13 @@ This module requires these other modules and libraries: * Plack * Tie::Hash::Expire +It also recommends (but does not require) these modules: + +* Authen::Passphrase::Scrypt + COPYRIGHT AND LICENCE -Copyright (C) 2015 by Marius Gavrilescu +Copyright (C) 2015-2017 by Marius Gavrilescu This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.20.1 or, diff --git a/lib/Plack/Middleware/Auth/Complex.pm b/lib/Plack/Middleware/Auth/Complex.pm index d4b5e4b..ea1b0b3 100644 --- a/lib/Plack/Middleware/Auth/Complex.pm +++ b/lib/Plack/Middleware/Auth/Complex.pm @@ -4,7 +4,7 @@ use 5.014000; use strict; use warnings; -our $VERSION = '0.002'; +our $VERSION = '0.003'; use parent qw/Plack::Middleware/; use re '/s';