diff --git a/Changes b/Changes index 5fc243c..92a47ff 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Changes for Perl extension DBD-SQLite -1.34_02 to be released +1.34_02 Fri 21 Oct 2011 *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Resolved #67581: bind_param SQL_INTEGER numifies value; Now DBD::SQLite croaks if you explicitly specify datatype diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index a105d60..c9cf0f3 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -10,7 +10,7 @@ use vars qw{$err $errstr $drh $sqlite_version $sqlite_version_number}; use vars qw{%COLLATION}; BEGIN { - $VERSION = '1.34_01'; + $VERSION = '1.34_02'; @ISA = 'DynaLoader'; # Initialize errors diff --git a/t/lib/Test.pm b/t/lib/Test.pm index 45ad766..0bc10cb 100644 --- a/t/lib/Test.pm +++ b/t/lib/Test.pm @@ -11,7 +11,7 @@ use vars qw{$VERSION @ISA @EXPORT @CALL_FUNCS}; my $parent; my %dbfiles; BEGIN { - $VERSION = '1.34_01'; + $VERSION = '1.34_02'; @ISA = 'Exporter'; @EXPORT = qw/connect_ok dies dbfile @CALL_FUNCS/;