Release 0.1.5.

This commit is contained in:
Andrei Zmievski
2009-03-31 13:41:50 -07:00
parent 172f29b9d9
commit 7edcdf94dd
3 changed files with 30 additions and 6 deletions

View File

@@ -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.

View File

@@ -15,10 +15,10 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>andrei@php.net</email>
<active>yes</active>
</lead>
<date>2009-02-13</date>
<date>2009-03-31</date>
<version>
<release>0.1.4</release>
<api>0.1.4</api>
<release>0.1.5</release>
<api>0.1.5</api>
</version>
<stability>
<release>beta</release>
@@ -26,8 +26,11 @@ http://pear.php.net/dtd/package-2.0.xsd">
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- 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.
</notes>
<contents>
<dir name="/">
@@ -58,6 +61,19 @@ http://pear.php.net/dtd/package-2.0.xsd">
<providesextension>memcached</providesextension>
<extsrcrelease/>
<changelog>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.1.5</release><api>0.1.5</api></version>
<date>2009-03-31</date>
<notes>
- 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.
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.1.4</release><api>0.1.4</api></version>

View File

@@ -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)