diff --git a/ChangeLog b/ChangeLog index 29fcfa4..6c34505 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ memcached extension changelog +Version 0.1.5 +------------- + * Implement getVersion(). + * Add support for preserving boolean value types. + * Fix crash when child class does not call constructor. + * Fix bug #16084 (Crash when addServers is called with an associative array). + * ZTS compilation fixes. + Version 0.1.4 ------------- * Fix compilation against PHP 5.3. diff --git a/package.xml b/package.xml index 1315b17..cc1066a 100644 --- a/package.xml +++ b/package.xml @@ -15,10 +15,10 @@ http://pear.php.net/dtd/package-2.0.xsd"> andrei@php.net yes - 2009-02-13 + 2009-03-31 - 0.1.4 - 0.1.4 + 0.1.5 + 0.1.5 beta @@ -26,8 +26,11 @@ http://pear.php.net/dtd/package-2.0.xsd"> PHP -- Fix compilation against PHP 5.3. -- Add support for 'igbinary' serializer (Oleg Grenrus) +- Implement getVersion(). +- Add support for preserving boolean value types. +- Fix crash when child class does not call constructor. +- Fix bug #16084 (Crash when addServers is called with an associative array). +- ZTS compilation fixes. @@ -58,6 +61,19 @@ http://pear.php.net/dtd/package-2.0.xsd"> memcached + + betabeta + 0.1.50.1.5 + 2009-03-31 + +- Implement getVersion(). +- Add support for preserving boolean value types. +- Fix crash when child class does not call constructor. +- Fix bug #16084 (Crash when addServers is called with an associative array). +- ZTS compilation fixes. + + + betabeta 0.1.40.1.4 diff --git a/php_memcached.h b/php_memcached.h index a95159d..276e989 100644 --- a/php_memcached.h +++ b/php_memcached.h @@ -48,7 +48,7 @@ PHP_MINIT_FUNCTION(memcached); PHP_MSHUTDOWN_FUNCTION(memcached); PHP_MINFO_FUNCTION(memcached); -#define PHP_MEMCACHED_VERSION "0.1.4" +#define PHP_MEMCACHED_VERSION "0.1.5" #ifdef ZTS #define MEMC_G(v) TSRMG(php_memcached_globals_id, zend_php_memcached_globals *, v)