1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00

Move to a production version number

This commit is contained in:
Adam Kennedy 2009-04-19 09:40:16 +00:00
parent 9958f58fda
commit ab521c5c97
3 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
Changes for Perl extension DBD-SQLite. Changes for Perl extension DBD-SQLite.
1.23 Sun 19 Apr 2009
- No changes from 1.22_08, just switched to production release (ADAMK)
1.22_08 Fri 17 Apr 2009 1.22_08 Fri 17 Apr 2009
- Completed the migration of all tests and deleted lib.pl (ADAMK) - Completed the migration of all tests and deleted lib.pl (ADAMK)
- Prevented a double "commit is innefective" warning (ADAMK) - Prevented a double "commit is innefective" warning (ADAMK)

View file

@ -8,7 +8,7 @@ use DynaLoader ();
use vars qw($VERSION @ISA); use vars qw($VERSION @ISA);
use vars qw{$err $errstr $drh $sqlite_version}; use vars qw{$err $errstr $drh $sqlite_version};
BEGIN { BEGIN {
$VERSION = '1.22_08'; $VERSION = '1.23';
@ISA = ('DynaLoader'); @ISA = ('DynaLoader');
# Initialize errors # Initialize errors

View file

@ -9,7 +9,7 @@ use Test::More ();
use vars qw{$VERSION @ISA @EXPORT}; use vars qw{$VERSION @ISA @EXPORT};
BEGIN { BEGIN {
$VERSION = '1.22_08'; $VERSION = '1.23';
@ISA = qw{ Exporter }; @ISA = qw{ Exporter };
@EXPORT = qw{ connect_ok }; @EXPORT = qw{ connect_ok };