From: Marius Gavrilescu Date: Fri, 28 Feb 2014 21:31:00 +0000 (+0200) Subject: Bump version and update Changes X-Git-Tag: 0.001001^0 X-Git-Url: http://git.ieval.ro/?p=apache2-authzcaps.git;a=commitdiff_plain;h=2096e2673d405afc7b394e3a09487a19e7bd3788 Bump version and update Changes --- diff --git a/Changes b/Changes index de358a3..18cb1e8 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,8 @@ Revision history for Perl extension Apache2::AuthzCaps. -0.001 Mon 5 Aug 11:22:54 EEST 2013 - - Initial release +0.001001 2014-02-28T23:32+03:00 + - Recommend mod_perl instead of depending on it + - Silence warnings about exprimental smartmatch + +0.001 2013-08-05T11:22+03:00 + - Initial release diff --git a/lib/Apache2/AuthzCaps.pm b/lib/Apache2/AuthzCaps.pm index b0ccffc..426b608 100644 --- a/lib/Apache2/AuthzCaps.pm +++ b/lib/Apache2/AuthzCaps.pm @@ -1,10 +1,11 @@ -package Apache2::AuthzCaps 0.001; +package Apache2::AuthzCaps; use 5.014000; use strict; use warnings; use subs qw/OK DECLINED/; no if $] >= 5.017011, warnings => 'experimental::smartmatch'; +our $VERSION = '0.001001'; use if $ENV{MOD_PERL}, 'Apache2::Access'; use if $ENV{MOD_PERL}, 'Apache2::Const' => qw/OK DECLINED/;