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

Preparing for production release

This commit is contained in:
Adam Kennedy 2009-11-23 11:07:34 +00:00
parent c0bede6a13
commit 0862fd90f8
3 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
Changes for Perl extension DBD-SQLite
1.27 Mon 23 Nov 2009
- Switching to a production version
1.26_07 Sun 15 Nov 2009
*** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS ***
- Foreign keys support is once again disabled by default.

View file

@ -10,7 +10,7 @@ use vars qw{$err $errstr $drh $sqlite_version};
use vars qw{%COLLATION};
BEGIN {
$VERSION = '1.26_07';
$VERSION = '1.27';
@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_07';
$VERSION = '1.27';
@ISA = 'Exporter';
@EXPORT = qw/connect_ok dies @CALL_FUNCS/;