Version 0.016 v1.016
Dagfinn Ilmari Mannsåker [Thu, 11 Feb 2016 17:46:30 +0000 (17:46 +0000)]
Changes
lib/Catalyst/Authentication/Store/LDAP.pm
lib/Catalyst/Authentication/Store/LDAP/Backend.pm
lib/Catalyst/Authentication/Store/LDAP/User.pm

diff --git a/Changes b/Changes
index 153914e..3056927 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,4 @@
+1.016 11 Februrary 2016
   - Document how to limit the attributes returned from the LDAP search
   - Add persist_in_session config option to allow storing of user and its
     roles in the session without hitting the LDAP store on each request
index 196f180..4769ede 100644 (file)
@@ -3,7 +3,7 @@ package Catalyst::Authentication::Store::LDAP;
 use strict;
 use warnings;
 
-our $VERSION = '1.015';
+our $VERSION = '1.016';
 
 use Catalyst::Authentication::Store::LDAP::Backend;
 
index bd7bae0..75e2a0f 100644 (file)
@@ -74,7 +74,7 @@ use base qw( Class::Accessor::Fast );
 use strict;
 use warnings;
 
-our $VERSION = '1.015';
+our $VERSION = '1.016';
 
 use Catalyst::Authentication::Store::LDAP::User;
 use Net::LDAP;
index 547e7c9..e391de3 100644 (file)
@@ -51,7 +51,7 @@ use warnings;
 use Scalar::Util qw/refaddr/;
 use Net::LDAP::Entry;
 
-our $VERSION = '1.015';
+our $VERSION = '1.016';
 
 BEGIN { __PACKAGE__->mk_accessors(qw/user store/) }