From: Peter Karman Date: Thu, 10 Apr 2008 02:02:44 +0000 (+0000) Subject: release 0.1001 X-Git-Tag: v0.1001^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=be60b1e0d03091dd4df56358a3b282c128341b58;p=catagits%2FCatalyst-Authentication-Store-LDAP.git release 0.1001 --- diff --git a/Changes b/Changes index 66d6e7f..93b315c 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ -0.1001 xxx +0.1001 9 April 2008 - matthewr pointed out that the SYNOPSIS 'use Catalyst' line is wrong. + - imacat reported that t/03-entry was failing when Catalyst::Model::LDAP was + not installed. Fixed RT# 34777. 0.1000 4 Feb 2008 diff --git a/META.yml b/META.yml index 2fc8cc0..5e72800 100644 --- a/META.yml +++ b/META.yml @@ -19,4 +19,4 @@ no_index: requires: Catalyst::Plugin::Authentication: 0.10003 Net::LDAP: 0 -version: 0.1000 +version: 0.1001 diff --git a/lib/Catalyst/Authentication/Store/LDAP.pm b/lib/Catalyst/Authentication/Store/LDAP.pm index 7471faf..06b5b21 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 = '0.1000'; +our $VERSION = '0.1001'; 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 e70ca96..87b3948 100644 --- a/lib/Catalyst/Authentication/Store/LDAP/Backend.pm +++ b/lib/Catalyst/Authentication/Store/LDAP/Backend.pm @@ -78,7 +78,7 @@ use base qw( Class::Accessor::Fast ); use strict; use warnings; -our $VERSION = '0.1000'; +our $VERSION = '0.1001'; 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 1dd010f..ce20d4f 100644 --- a/lib/Catalyst/Authentication/Store/LDAP/User.pm +++ b/lib/Catalyst/Authentication/Store/LDAP/User.pm @@ -46,7 +46,7 @@ use base qw( Catalyst::Authentication::User Class::Accessor::Fast ); use strict; use warnings; -our $VERSION = '0.1000'; +our $VERSION = '0.1001'; BEGIN { __PACKAGE__->mk_accessors(qw/user store/) }