From: Marius Gavrilescu Date: Sat, 12 Sep 2015 15:25:02 +0000 (+0300) Subject: Bump version and update Changes X-Git-Tag: 0.002^0 X-Git-Url: http://git.ieval.ro/?p=apache2-authzcaps.git;a=commitdiff_plain Bump version and update Changes --- diff --git a/Changes b/Changes index 18cb1e8..ef3a5fa 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension Apache2::AuthzCaps. +0.002 2015-09-12T18:25+03:00 + - Add Apache 2.4 support + - Get rid of smartmatch + 0.001001 2014-02-28T23:32+03:00 - Recommend mod_perl instead of depending on it - Silence warnings about exprimental smartmatch diff --git a/README b/README index 099808b..de9392d 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Apache2-AuthzCaps version 0.001 +Apache2-AuthzCaps version 0.002 =============================== Apache2::AuthzCaps is a perl module which provides simple Apache2 diff --git a/lib/Apache2/AuthzCaps.pm b/lib/Apache2/AuthzCaps.pm index 0056efe..1ad2260 100644 --- a/lib/Apache2/AuthzCaps.pm +++ b/lib/Apache2/AuthzCaps.pm @@ -5,7 +5,7 @@ use strict; use warnings; use subs qw/OK DECLINED/; -our $VERSION = '0.001001'; +our $VERSION = '0.002'; use if $ENV{MOD_PERL}, 'Apache2::Access'; use if $ENV{MOD_PERL}, 'Apache2::Const' => qw/OK DECLINED/; diff --git a/lib/Apache2_4/AuthzCaps.pm b/lib/Apache2_4/AuthzCaps.pm index 23a9a93..f47e652 100644 --- a/lib/Apache2_4/AuthzCaps.pm +++ b/lib/Apache2_4/AuthzCaps.pm @@ -4,7 +4,7 @@ use 5.014000; use strict; use warnings; -our $VERSION = '0.001001'; +our $VERSION = '0.002'; use Apache2::AuthzCaps 'hascaps'; use Apache2::Const qw/AUTHZ_GRANTED AUTHZ_DENIED AUTHZ_DENIED_NO_USER/;