1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

Preparing for release

This commit is contained in:
Adam Kennedy 2009-10-28 11:09:26 +00:00
parent 3140bc4920
commit ec3b820aba
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
Changes for Perl extension DBD-SQLite
1.26_06 (not released yet)
1.26_06 Wed 28 Ocr 2009
*** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
- Removed undocumented (and most probably unused) reset method
from a statement handle (which was only accessible via func().)

View file

@ -10,7 +10,7 @@ use vars qw{$err $errstr $drh $sqlite_version};
use vars qw{%COLLATION};
BEGIN {
$VERSION = '1.26_05';
$VERSION = '1.26_06';
@ISA = 'DynaLoader';
# Initialize errors

View file

@ -9,7 +9,7 @@ use Test::More ();
use vars qw{$VERSION @ISA @EXPORT @CALL_FUNCS};
BEGIN {
$VERSION = '1.26_05';
$VERSION = '1.26_06';
@ISA = 'Exporter';
@EXPORT = qw/connect_ok dies @CALL_FUNCS/;