- Bring the majority of PECL extensions into line with macro/x.x.x versioning.

- Please use the -dev tag during the development cycle so that snapshots can easily be distinguished from releases.
This commit is contained in:
Steph Fox
2008-03-31 10:04:24 +00:00
parent ab7c9a9c1d
commit 16ddd2863a
2 changed files with 3 additions and 2 deletions

View File

@@ -178,6 +178,7 @@ PHP_MINFO_FUNCTION(pdo_user)
{
php_info_print_table_start();
php_info_print_table_header(2, "PDO Driver for Userspace data sources", "enabled");
php_info_print_table_row(2, "Driver version", PHP_PDO_USER_VERSION);
php_info_print_table_end();
}
/* }}} */
@@ -197,7 +198,7 @@ zend_module_entry pdo_user_module_entry = {
PHP_RINIT(pdo_user),
PHP_RSHUTDOWN(pdo_user),
PHP_MINFO(pdo_user),
PHP_PDO_USER_EXTVER,
PHP_PDO_USER_VERSION,
STANDARD_MODULE_PROPERTIES
};
/* }}} */

View File

@@ -22,7 +22,7 @@
#define PHP_PDO_USER_H
#define PHP_PDO_USER_EXTNAME "pdo_user"
#define PHP_PDO_USER_EXTVER "0.2"
#define PHP_PDO_USER_VERSION "0.4.0-dev"
#ifdef HAVE_CONFIG_H
#include "config.h"