summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/pdo_mysql/package.xml5
-rwxr-xr-xext/pdo_mysql/pdo_mysql.c2
2 files changed, 4 insertions, 3 deletions
diff --git a/ext/pdo_mysql/package.xml b/ext/pdo_mysql/package.xml
index ee53e1ac2b..bfcae8a799 100644
--- a/ext/pdo_mysql/package.xml
+++ b/ext/pdo_mysql/package.xml
@@ -30,11 +30,12 @@
<license>PHP</license>
<release>
<state>stable</state>
- <version>1.0</version>
- <date>2005-11-26</date>
+ <version>1.0.1</version>
+ <date>2005-12-01</date>
<notes>
** Changes **
+- Fixed Bug #35480 and #35415, crash when using persistent connections.
- Improved error detection for OPTIMIZE queries
- Added PDO::MYSQL_ATTR_LOCAL_INFILE, PDO::MYSQL_ATTR_INIT_COMMAND,
PDO::MYSQL_ATTR_READ_DEFAULT_FILE, PDO::MYSQL_ATTR_READ_DEFAULT_GROUP
diff --git a/ext/pdo_mysql/pdo_mysql.c b/ext/pdo_mysql/pdo_mysql.c
index ba0a3275bd..2bebe1ed07 100755
--- a/ext/pdo_mysql/pdo_mysql.c
+++ b/ext/pdo_mysql/pdo_mysql.c
@@ -60,7 +60,7 @@ zend_module_entry pdo_mysql_module_entry = {
NULL,
NULL,
PHP_MINFO(pdo_mysql),
- "1.0",
+ "1.0.1",
STANDARD_MODULE_PROPERTIES
};
/* }}} */