set to 1.0 stable.

This commit is contained in:
Wez Furlong 2005-11-26 20:50:08 +00:00
parent 1ea0bae9c0
commit 85ad81736c
12 changed files with 25 additions and 24 deletions

View File

@ -42,7 +42,7 @@
<release>
<state>stable</state>
<version>1.0</version>
<date>2005-11-24</date>
<date>2005-11-26</date>
<notes>
** NOTE WELL! **

View File

@ -133,7 +133,7 @@ zend_module_entry pdo_module_entry = {
PHP_RINIT(pdo),
PHP_RSHUTDOWN(pdo),
PHP_MINFO(pdo),
"1.0RC2",
"1.0",
STANDARD_MODULE_PROPERTIES
};
/* }}} */

View File

@ -23,9 +23,9 @@
</description>
<license>PHP</license>
<release>
<state>beta</state>
<version>1.0RC2</version>
<date>2005-11-01</date>
<state>stable</state>
<version>1.0</version>
<date>2005-11-26</date>
<notes>
Update code for API changes in PDO; no actual changes have been made to this driver.
@ -37,6 +37,7 @@ however: you are *strongly* recommended to use PDO_ODBC instead of this driver o
Windows platforms.
** Changes **
- Fix Bug #34777; segfault when retrieving non-existent error info
- Fix Bug #35032; didn't find FreeTDS includes on some systems
</notes>
@ -53,7 +54,7 @@ Windows platforms.
</filelist>
<deps>
<dep type="php" rel="ge" version="5.0.3"/>
<dep type="ext" name="pdo" rel="ge" version="1.0RC2"/>
<dep type="ext" name="pdo" rel="ge" version="1.0"/>
</deps>
</release>
</package>

View File

@ -65,7 +65,7 @@ zend_module_entry pdo_dblib_module_entry = {
NULL,
PHP_RSHUTDOWN(pdo_dblib),
PHP_MINFO(pdo_dblib),
"1.0RC1",
"1.0",
STANDARD_MODULE_PROPERTIES
};

View File

@ -2,7 +2,7 @@
<!DOCTYPE package SYSTEM "../pear/package.dtd">
<package version="1.0">
<name>PDO_MYSQL</name>
<summary>Mysql 3.x/4.0 driver for PDO</summary>
<summary>MySQL driver for PDO</summary>
<maintainers>
<maintainer>
<user>gschlossnagle</user>
@ -29,9 +29,9 @@
</description>
<license>PHP</license>
<release>
<state>beta</state>
<version>1.0RC2</version>
<date>2005-10-01</date>
<state>stable</state>
<version>1.0</version>
<date>2005-11-26</date>
<notes>
** Changes **
@ -61,7 +61,7 @@ Windows binaries can be found at http://pecl4win.php.net/ext.php/php_pdo_mysql.d
</filelist>
<deps>
<dep type="php" rel="ge" version="5.0.3"/>
<dep type="ext" name="pdo" rel="ge" version="1.0RC2"/>
<dep type="ext" name="pdo" rel="ge" version="1.0"/>
</deps>
</release>
</package>

View File

@ -60,7 +60,7 @@ zend_module_entry pdo_mysql_module_entry = {
NULL,
NULL,
PHP_MINFO(pdo_mysql),
"1.0RC1",
"1.0",
STANDARD_MODULE_PROPERTIES
};
/* }}} */

View File

@ -20,9 +20,9 @@
</description>
<license>PHP</license>
<release>
<state>beta</state>
<version>1.0RC2</version>
<date>2005-11-01</date>
<state>stable</state>
<version>1.0</version>
<date>2005-11-26</date>
<notes>
You need to install the PDO core module before you can make use of this one.
@ -45,7 +45,7 @@ http://pecl4win.php.net/ext.php/php_pdo_odbc.dll
</filelist>
<deps>
<dep type="php" rel="ge" version="5.0.3"/>
<dep type="ext" rel="ge" name="pdo" version="1.0RC2"/>
<dep type="ext" rel="ge" name="pdo" version="1.0"/>
</deps>
</release>
</package>

View File

@ -60,7 +60,7 @@ zend_module_entry pdo_odbc_module_entry = {
NULL,
NULL,
PHP_MINFO(pdo_odbc),
"1.0RC1",
"1.0",
STANDARD_MODULE_PROPERTIES
};
/* }}} */

View File

@ -29,9 +29,9 @@
</description>
<license>PHP</license>
<release>
<state>beta</state>
<state>stable</state>
<version>1.0</version>
<date>2005-11-01</date>
<date>2005-11-26</date>
<notes>
Now features native prepared statements and numerous other improvements.
@ -57,7 +57,7 @@ http://pecl4win.php.net/ext.php/php_pdo_pgsql.dll
</filelist>
<deps>
<dep type="php" rel="ge" version="5.0.3"/>
<dep type="ext" rel="ge" name="pdo" version="1.0RC2"/>
<dep type="ext" rel="ge" name="pdo" version="1.0"/>
</deps>
</release>
</package>

View File

@ -61,7 +61,7 @@ zend_module_entry pdo_pgsql_module_entry = {
PHP_RINIT(pdo_pgsql),
PHP_RSHUTDOWN(pdo_pgsql),
PHP_MINFO(pdo_pgsql),
"1.0RC1",
"1.0",
STANDARD_MODULE_PROPERTIES
};
/* }}} */

View File

@ -25,7 +25,7 @@
<release>
<state>stable</state>
<version>1.0</version>
<date>2005-11-24</date>
<date>2005-11-26</date>
<notes>
You need to install the PDO core module before you can make use of this one.

View File

@ -31,7 +31,7 @@
#include "php_pdo_sqlite_int.h"
#include "zend_exceptions.h"
#define PHP_PDO_SQLITE_MODULE_VERSION "1.0RC1"
#define PHP_PDO_SQLITE_MODULE_VERSION "1.0"
/* {{{ pdo_sqlite_functions[] */
function_entry pdo_sqlite_functions[] = {