From 9653864fbd9359a6668a18e136ced0dfcc26dd7e Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 18 Feb 2005 15:32:14 +0000 Subject: [PATCH] prep for release --- ext/pdo/package.xml | 10 +++++----- ext/pdo/pdo.c | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ext/pdo/package.xml b/ext/pdo/package.xml index 50289f600f..ab6bc58849 100755 --- a/ext/pdo/package.xml +++ b/ext/pdo/package.xml @@ -41,8 +41,8 @@ PHP beta - 0.2.3 - 2005-02-13 + 0.2.4 + 2005-02-18 Note that PDO on its own is useless. @@ -63,9 +63,9 @@ 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 +- Added PDOStatement::fetchObject(string class_name [, NULL|array ctor_args]]) +- PDO_FETCH_CLASS now passes args through to the class constructor +- Now builds directly via "pear install PDO" (upgrade to PEAR 1.3.5 first) diff --git a/ext/pdo/pdo.c b/ext/pdo/pdo.c index b87cb94000..71ce757a67 100755 --- a/ext/pdo/pdo.c +++ b/ext/pdo/pdo.c @@ -78,7 +78,7 @@ zend_module_entry pdo_module_entry = { PHP_RINIT(pdo), PHP_RSHUTDOWN(pdo), PHP_MINFO(pdo), - "0.2.3", + "0.2.4", STANDARD_MODULE_PROPERTIES }; /* }}} */ -- 2.50.1