Release 0.03
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#	modified:   Changes
#	modified:   debian/changelog
#	modified:   debian/control
#	modified:   lib/SQL/Easy.pm
#
diff --git a/Changes b/Changes
index 8b0fda0..34a1544 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for SQL::Easy
 
+0.03    2011-06-12
+        * Quick and dirty .deb creation
+        * Fixing utf8 work with mysql
+        * Updated README and a small fix in pod
+
 0.02    2010-12-11
         * Fixed dependences in Makefile.PL. Thank you, cpan author ANDK.
         * Now module check if the db connection alive and reconnet if needed.
diff --git a/debian/changelog b/debian/changelog
index 77076af..abeb4c3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-libsql-easy-perl (0.02-1) unstable; urgency=low
+libsql-easy-perl (0.03-1) lucid; urgency=low
 
-  * Initial Release.
+  * Release.
 
- -- Ivan Bessarabov <ivan@bessarabov.ru>  Sat, 8 Jan 2011 13:16:40 +0300
+ -- Ivan Bessarabov <ivan@bessarabov.ru>  Sun, 12 Jun 2011 18:01:40 +0300
diff --git a/debian/control b/debian/control
index 9171ba9..f34778b 100644
--- a/debian/control
+++ b/debian/control
@@ -2,14 +2,14 @@ Source: libsql-easy-perl
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 7.2.13)
-Build-Depends-Indep: perl
+Build-Depends-Indep: perl, libdbi-perl
 Maintainer: Ivan Bessarabov <ivan@bessarabov.ru>
 Standards-Version: 3.8.4
 Homepage: http://search.cpan.org/dist/SQL-Easy/
 
 Package: libsql-easy-perl
 Architecture: all
-Depends: ${misc:Depends}, ${perl:Depends}
+Depends: ${misc:Depends}, ${perl:Depends}, libdbi-perl
 Description: extremely easy access to sql data
  On cpan there are a lot of ORMs. The problem is that sometimes ORM are too
  complex. You don't need ORM in a simple script with couple requests. ORM is
diff --git a/lib/SQL/Easy.pm b/lib/SQL/Easy.pm
index c880feb..e27225a 100644
--- a/lib/SQL/Easy.pm
+++ b/lib/SQL/Easy.pm
@@ -338,7 +338,8 @@ sub _reconnect_if_needed {
 sub _get_connection {
     my ($s) = @_;
     my $dsn = "DBI:mysql:database=" . $s->{db} . ";host=" . $s->{host} . ";port=" . $s->{port};
-    my $dbh = DBI->connect($dsn, $s->{user}, $s->{password}, { RaiseError => 1,
+    my $dbh = DBI->connect($dsn, $s->{user}, $s->{password}, {
+        RaiseError => 1,
         PrintError => 0,
         mysql_auto_reconnect => 0,
         mysql_enable_utf8 => 1,
