diff options
author | Wez Furlong <wez@php.net> | 2005-02-12 08:23:32 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2005-02-12 08:23:32 +0000 |
commit | 9e31b10531938ec5879d5b8d94b92885a4ffb714 (patch) | |
tree | bcd719d55e3735809ea82eae63aa381da04f5831 /ext | |
parent | 002545fffb8a7b523978a3d21c62bd2175caabda (diff) | |
download | php-git-9e31b10531938ec5879d5b8d94b92885a4ffb714.tar.gz |
prep for release
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/pdo_sqlite/package.xml | 5 | ||||
-rw-r--r-- | ext/pdo_sqlite/pdo_sqlite.c | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/ext/pdo_sqlite/package.xml b/ext/pdo_sqlite/package.xml index 99378a9142..97bf1c8415 100755 --- a/ext/pdo_sqlite/package.xml +++ b/ext/pdo_sqlite/package.xml @@ -24,8 +24,8 @@ <license>PHP</license>
<release>
<state>beta</state>
- <version>0.2.1</version>
- <date>2005-02-10</date>
+ <version>0.2.2</version>
+ <date>2005-02-12</date>
<notes>
You need to install the PDO core module before you can make use of this one.
@@ -35,6 +35,7 @@ - setting PDO_ATTR_TIMEOUT controls the busy timeout
- Fixed PECL Bug #3391; cannot bind NULL parameters
+ - Fixed build problem when building the bundled sqlite library
</notes>
<filelist>
diff --git a/ext/pdo_sqlite/pdo_sqlite.c b/ext/pdo_sqlite/pdo_sqlite.c index da10ca2687..d19b00fd8e 100644 --- a/ext/pdo_sqlite/pdo_sqlite.c +++ b/ext/pdo_sqlite/pdo_sqlite.c @@ -31,7 +31,7 @@ #include "php_pdo_sqlite_int.h" #include "zend_exceptions.h" -#define PHP_PDO_SQLITE_MODULE_VERSION "0.2.1" +#define PHP_PDO_SQLITE_MODULE_VERSION "0.2.2" /* {{{ pdo_sqlite_functions[] */ function_entry pdo_sqlite_functions[] = { |