diff --git a/Changes b/Changes index d599a89..66fd72d 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Changes for Perl extension DBD-SQLite +1.61_02 2018-12-01 + - Added sqlite_backup_from_dbh/sqlite_backup_to_dbh methods + - Introduced sqlite_prefer_numeric_type database handle attribute + that changes the value of TYPE statement handle attribute + from an array of string to an array of integer, as an experimental + feature. Setting this may break your applications. + - Changed preferred bugtracker + 1.61_01 2018-12-01 - Added ability to configure SQLITE_MAX_LENGT with environmental variable (Roy Storey) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index 3130d68..a147251 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -5,7 +5,7 @@ use strict; use DBI 1.57 (); use DynaLoader (); -our $VERSION = '1.61_01'; +our $VERSION = '1.61_02'; our @ISA = 'DynaLoader'; # sqlite_version cache (set in the XS bootstrap) diff --git a/lib/DBD/SQLite/VirtualTable.pm b/lib/DBD/SQLite/VirtualTable.pm index 51b195b..dabd737 100644 --- a/lib/DBD/SQLite/VirtualTable.pm +++ b/lib/DBD/SQLite/VirtualTable.pm @@ -5,7 +5,7 @@ use strict; use warnings; use Scalar::Util qw/weaken/; -our $VERSION = '1.61_01'; +our $VERSION = '1.61_02'; our @ISA;