Bump version and update Changes 0.001
authorMarius Gavrilescu <marius@ieval.ro>
Sun, 1 Mar 2015 12:30:31 +0000 (14:30 +0200)
committerMarius Gavrilescu <marius@ieval.ro>
Sun, 1 Mar 2015 12:30:31 +0000 (14:30 +0200)
Changes
README
lib/Plack/Middleware/Auth/Complex.pm

diff --git a/Changes b/Changes
index 44802ddbdad1cd42e56245c5d365ddda6916a34d..e0025cbadf40bff16875a8576ebe486f2208d431 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,14 @@
 Revision history for Perl extension Plack::Middleware::Auth::Complex.
 
 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
 0.000_001 2015-03-01T01:20+02:00
  - Initial release
diff --git a/README b/README
index 338c74fc0a1b9560648ceee79e8bdd1b82658883..c0c2fbb6afa416446a21de70266bb21e5c4d3b06 100644 (file)
--- 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.
 
 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
 
 
 INSTALLATION
 
@@ -27,6 +26,7 @@ This module requires these other modules and libraries:
 * DBI + DBD::SQLite
 * Email::Simple
 * Plack
 * DBI + DBD::SQLite
 * Email::Simple
 * Plack
+* Tie::Hash::Expire
 
 COPYRIGHT AND LICENCE
 
 
 COPYRIGHT AND LICENCE
 
index 057bfd7fbe96a343a8cb712a4e74555358829982..4436e5a81321c59b827140f55e22f2efe84ac677 100644 (file)
@@ -4,7 +4,7 @@ use 5.014000;
 use strict;
 use warnings;
 
 use strict;
 use warnings;
 
-our $VERSION = '0.000_001';
+our $VERSION = '0.001';
 
 use parent qw/Plack::Middleware/;
 use re '/s';
 
 use parent qw/Plack::Middleware/;
 use re '/s';
This page took 0.013476 seconds and 4 git commands to generate.