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

Release 1.73_01

This commit is contained in:
Kenichi Ishigaki 2023-07-09 10:03:24 +09:00
parent f9e3cb6b75
commit d4bb44460f
3 changed files with 7 additions and 3 deletions

View file

@ -1,5 +1,9 @@
Changes for Perl extension DBD-SQLite Changes for Perl extension DBD-SQLite
1.73_01 2023-07-09
- Upgraded SQLite to 3.42.0
- Add missing possible table_type values to POD (GH#105, dboehmer++)
1.72 2022-11-04 1.72 2022-11-04
- Switched to a production version - Switched to a production version

View file

@ -5,7 +5,7 @@ use strict;
use DBI 1.57 (); use DBI 1.57 ();
use XSLoader (); use XSLoader ();
our $VERSION = '1.72'; our $VERSION = '1.73_01';
# sqlite_version cache (set in the XS bootstrap) # sqlite_version cache (set in the XS bootstrap)
our ($sqlite_version, $sqlite_version_number); our ($sqlite_version, $sqlite_version_number);
@ -1074,7 +1074,7 @@ are limited by the typeless nature of the SQLite database.
=head1 SQLITE VERSION =head1 SQLITE VERSION
DBD::SQLite is usually compiled with a bundled SQLite library DBD::SQLite is usually compiled with a bundled SQLite library
(SQLite version S<3.41.0> as of this release) for consistency. (SQLite version S<3.42.0> as of this release) for consistency.
However, a different version of SQLite may sometimes be used for However, a different version of SQLite may sometimes be used for
some reasons like security, or some new experimental features. some reasons like security, or some new experimental features.

View file

@ -5,7 +5,7 @@ use strict;
use warnings; use warnings;
use Scalar::Util qw/weaken/; use Scalar::Util qw/weaken/;
our $VERSION = '1.72'; our $VERSION = '1.73_01';
our @ISA; our @ISA;