From: Marius Gavrilescu Date: Sat, 13 Jun 2015 11:37:05 +0000 (+0300) Subject: Bump version and update Changes X-Git-Url: http://git.ieval.ro/?p=apache2-authen-passphrase.git;a=commitdiff_plain;h=be3da3f96705ddb81332ef84c853648ca3bde626 Bump version and update Changes --- diff --git a/Changes b/Changes index af807da..ec5ce6c 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Apache2::Authen::Passphrase. +0.002002 2015-06-13T14:37+03:00 + - Fix for Apache 2.4 + - Fix argument checking in aap-passwd + - Fix misc packaging issues + 0.002001 2014-02-28T23:23+03:00 - Recommend mod_perl instead of depending on it diff --git a/README b/README index 286257e..b2aecfb 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Apache2-Authen-Passphrase version 0.002 +Apache2-Authen-Passphrase version 0.002002 ========================================== Apache2::Authen::Passphrase is a perl module which provides easy-to-use Apache2 authentication. It exports some utility functions and it contains a PerlAuthenHandler. @@ -18,14 +18,14 @@ DEPENDENCIES This module requires these other modules and libraries: -* mod_perl2 +* mod_perl2 (optional) * Authen::Passphrase * YAML::Any * IO::Prompter COPYRIGHT AND LICENCE -Copyright (C) 2013 by Marius Gavrilescu +Copyright (C) 2013-2015 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.14.2 or, diff --git a/lib/Apache2/Authen/Passphrase.pm b/lib/Apache2/Authen/Passphrase.pm index 5debb55..229ff79 100644 --- a/lib/Apache2/Authen/Passphrase.pm +++ b/lib/Apache2/Authen/Passphrase.pm @@ -6,7 +6,7 @@ use warnings; use parent qw/Exporter/; use subs qw/OK HTTP_UNAUTHORIZED/; -our $VERSION = 0.002001; +our $VERSION = 0.002002; use constant USER_REGEX => qr/^\w{2,20}$/pas; use constant PASSPHRASE_VERSION => 1;