From: Wez Furlong Date: Sun, 13 Feb 2005 06:56:16 +0000 (+0000) Subject: prep for release X-Git-Tag: RELEASE_0_2_3~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0be93c95c986bb4fe76c409fbfd1dfb02a188ffd;p=php prep for release --- diff --git a/ext/pdo/package.xml b/ext/pdo/package.xml index c0e3d3480e..3608a5ce0c 100755 --- a/ext/pdo/package.xml +++ b/ext/pdo/package.xml @@ -47,8 +47,8 @@ PHP beta - 0.2.2 - 2005-02-11 + 0.2.3 + 2005-02-13 Note that PDO on its own is useless. @@ -68,6 +68,10 @@ http://snaps.php.net/win32/PECL_5_0/ - Added PDO::quote($string). Closes PECL Bug #3393 - Fixed PDO::query() for drivers using bound parameter emulation. +- Fixed PECL Bug #3434, crash when using odbc with named parameters. + +* Note: this release bumps the API number; you will need to rebuild + your PDO drivers diff --git a/ext/pdo/pdo.c b/ext/pdo/pdo.c index 8d2361c95f..2a93a5f705 100755 --- a/ext/pdo/pdo.c +++ b/ext/pdo/pdo.c @@ -74,7 +74,7 @@ zend_module_entry pdo_module_entry = { PHP_RINIT(pdo), PHP_RSHUTDOWN(pdo), PHP_MINFO(pdo), - "0.2.2", + "0.2.3", STANDARD_MODULE_PROPERTIES }; /* }}} */