]> granicus.if.org Git - php/commitdiff
prep for release
authorWez Furlong <wez@php.net>
Fri, 18 Feb 2005 15:32:14 +0000 (15:32 +0000)
committerWez Furlong <wez@php.net>
Fri, 18 Feb 2005 15:32:14 +0000 (15:32 +0000)
ext/pdo/package.xml
ext/pdo/pdo.c

index 50289f600f12ab9164f14f710e430c033af70707..ab6bc58849589023d71a6cd95cdbe07c6a05acda 100755 (executable)
@@ -41,8 +41,8 @@
  <license>PHP</license>
  <release>
   <state>beta</state>
-  <version>0.2.3</version>
-  <date>2005-02-13</date>
+  <version>0.2.4</version>
+  <date>2005-02-18</date>
 
   <notes>
 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)
 
   </notes>
 
index b87cb9400065304cf86bde6e3820a87809d4ddba..71ce757a67fce7da423fc03fc032fcc27d5d7d5d 100755 (executable)
@@ -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
 };
 /* }}} */