diff --git a/Netdisco/Changes b/Netdisco/Changes index e388e753..caa77335 100644 --- a/Netdisco/Changes +++ b/Netdisco/Changes @@ -1,3 +1,9 @@ +2.027002 - 2014-05-04 + + [BUG FIXES] + + * revert use password instead of pass for Dancer::Plugin::DBIC + 2.027001 - 2014-05-03 [BUG FIXES] diff --git a/Netdisco/META.yml b/Netdisco/META.yml index 2c17c296..7943d6f1 100644 --- a/Netdisco/META.yml +++ b/Netdisco/META.yml @@ -78,4 +78,4 @@ resources: homepage: http://netdisco.org/ license: http://opensource.org/licenses/bsd-license.php repository: git://git.code.sf.net/p/netdisco/netdisco-ng -version: 2.027001 +version: 2.027002 diff --git a/Netdisco/lib/App/Netdisco.pm b/Netdisco/lib/App/Netdisco.pm index 57d74752..bf182fb8 100644 --- a/Netdisco/lib/App/Netdisco.pm +++ b/Netdisco/lib/App/Netdisco.pm @@ -4,7 +4,7 @@ use strict; use warnings; use 5.010_000; -our $VERSION = '2.027001'; +our $VERSION = '2.027002'; use App::Netdisco::Environment; use Dancer ':script'; @@ -24,7 +24,7 @@ if (ref {} eq ref setting('database')) { setting('plugins')->{DBIC}->{netdisco} ||= { dsn => $dsn, user => $user, - password => $pass, + pass => $pass, options => { AutoCommit => 1, RaiseError => 1,