From 51912257b1a84ebc1a55dd80cd9e27ea4c42dd35 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sun, 1 Mar 2015 14:30:31 +0200 Subject: [PATCH] Bump version and update Changes --- Changes | 10 ++++++++++ README | 8 ++++---- lib/Plack/Middleware/Auth/Complex.pm | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Changes b/Changes index 44802dd..e0025cb 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,14 @@ Revision history for Perl extension Plack::Middleware::Auth::Complex. +0.001 2015-03-01T14:30+02:00 + - First stable release + - Add authentication cache + - Change the default values of some options + - Split user creation logic from call_register to a new method + - Fix a POD bug + - Fix reset email subject + - Improve test coverage + - Add perlcritic tests and make code compliant + 0.000_001 2015-03-01T01:20+02:00 - Initial release diff --git a/README b/README index 338c74f..c0c2fbb 100644 --- a/README +++ b/README @@ -1,13 +1,12 @@ -Plack-Middleware-Auth-Complex version 0.000_001 -=============================================== +Plack-Middleware-Auth-Complex version 0.001 +=========================================== AuthComplex is an authentication system for Plack applications that allows user registration, password changing and password reset. AuthComplex sets REMOTE_USER if the request includes correct basic authentication and intercepts POST requests to some configurable URLs. -It also sets C<$env->{authcomplex}> to itself before passing the -request. +It also sets $env->{authcomplex} to itself before passing the request. INSTALLATION @@ -27,6 +26,7 @@ This module requires these other modules and libraries: * DBI + DBD::SQLite * Email::Simple * Plack +* Tie::Hash::Expire COPYRIGHT AND LICENCE diff --git a/lib/Plack/Middleware/Auth/Complex.pm b/lib/Plack/Middleware/Auth/Complex.pm index 057bfd7..4436e5a 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.000_001'; +our $VERSION = '0.001'; use parent qw/Plack::Middleware/; use re '/s'; -- 2.30.2