From: Marius Gavrilescu Date: Sat, 25 Mar 2017 19:13:19 +0000 (+0200) Subject: Bump version and update Changes X-Git-Tag: 0.002^0 X-Git-Url: http://git.ieval.ro/?p=plack-middleware-auth-complex.git;a=commitdiff_plain;h=de80d316f181be3675343e37a3773fff63eb3e1a Bump version and update Changes --- diff --git a/Changes b/Changes index 8d1358b..3667e69 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension Plack::Middleware::Auth::Complex. +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) + 0.001001 2015-03-08T16:54+02:00 - Call init at first request to allow non-delayed loading (e.g. starman --preload-app). - Make "Invalid username" error message customizable diff --git a/README b/README index 9473b92..6f25098 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -Plack-Middleware-Auth-Complex version 0.001001 -============================================== +Plack-Middleware-Auth-Complex version 0.002 +=========================================== AuthComplex is an authentication system for Plack applications that allows user registration, password changing and password reset. diff --git a/lib/Plack/Middleware/Auth/Complex.pm b/lib/Plack/Middleware/Auth/Complex.pm index 6c08273..b8e3565 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.001001'; +our $VERSION = '0.002'; use parent qw/Plack::Middleware/; use re '/s';