From: Tomas Doran Date: Tue, 6 Jul 2010 20:32:34 +0000 (+0000) Subject: Version 1.010 X-Git-Tag: v1.010^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Authentication-Store-LDAP.git;a=commitdiff_plain;h=bc77ff45fe40b52d43d7c2c3a5c80b061efdfbbb Version 1.010 --- diff --git a/Changes b/Changes index 97a8f1d..80ee8b3 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,5 @@ -has_attribute has a special case for 'dn' using the underlying ldap_entry +1.010 6 July 201 - Make AUTOLOAD method work for ->dn by generically calling has_attribute which has a special case for it. - Unify the handling of the ->username method between AUTOLOAD and diff --git a/lib/Catalyst/Authentication/Store/LDAP.pm b/lib/Catalyst/Authentication/Store/LDAP.pm index 11dfdc2..7292831 100644 --- a/lib/Catalyst/Authentication/Store/LDAP.pm +++ b/lib/Catalyst/Authentication/Store/LDAP.pm @@ -3,7 +3,7 @@ package Catalyst::Authentication::Store::LDAP; use strict; use warnings; -our $VERSION = '1.009'; +our $VERSION = '1.010'; use Catalyst::Authentication::Store::LDAP::Backend; diff --git a/lib/Catalyst/Authentication/Store/LDAP/Backend.pm b/lib/Catalyst/Authentication/Store/LDAP/Backend.pm index 72b34bd..8cca1d3 100644 --- a/lib/Catalyst/Authentication/Store/LDAP/Backend.pm +++ b/lib/Catalyst/Authentication/Store/LDAP/Backend.pm @@ -72,7 +72,7 @@ use base qw( Class::Accessor::Fast ); use strict; use warnings; -our $VERSION = '1.009'; +our $VERSION = '1.010'; use Catalyst::Authentication::Store::LDAP::User; use Net::LDAP; diff --git a/lib/Catalyst/Authentication/Store/LDAP/User.pm b/lib/Catalyst/Authentication/Store/LDAP/User.pm index b473233..b3cb982 100644 --- a/lib/Catalyst/Authentication/Store/LDAP/User.pm +++ b/lib/Catalyst/Authentication/Store/LDAP/User.pm @@ -50,7 +50,7 @@ use strict; use warnings; use Scalar::Util qw/refaddr/; -our $VERSION = '1.009'; +our $VERSION = '1.010'; BEGIN { __PACKAGE__->mk_accessors(qw/user store/) }