Skip to content

Commit

Permalink
Release 0.1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Zmievski committed Feb 6, 2009
1 parent 444c43c commit b90130c
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 8 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
@@ -1,5 +1,15 @@
memcached extension changelog

Version 0.1.2
-------------
* Fix bug #15896 (Memcached setMulti error).
* Check for empty key in getServerByKey().
* Allow passing 'null' for callbacks.
* get() with cas token fetching wasn't erroring out properly.
* Rename certain parameters in the API to be more clear.
* Allow only strings as the append/prepend value.
* Remove expiration parameter from append/prepend.

Version 0.1.1
-------------
* Add OPT_LIBKETAMA_COMPATIBLE option.
Expand Down
32 changes: 25 additions & 7 deletions package.xml
Expand Up @@ -15,25 +15,29 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>andrei@php.net</email>
<active>yes</active>
</lead>
<date>2009-02-02</date>
<date>2009-02-06</date>
<version>
<release>0.1.1</release>
<api>0.1.1</api>
<release>0.1.2</release>
<api>0.1.2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- Add OPT_LIBKETAMA_COMPATIBLE option.
- Implement addServers() method.
- Swap internal compressed and serialized flags to be compatible with other clients.
- Fix bug #15896 (Memcached setMulti error).
- Check for empty key in getServerByKey().
- Allow passing 'null' for callbacks.
- get() with cas token fetching wasn't erroring out properly.
- Rename certain parameters in the API to be more clear.
- Allow only strings as the append/prepend value.
- Remove expiration parameter from append/prepend.
</notes>
<contents>
<dir name="/">
<file role='doc' name='EXPERIMENTAL'/>
<file role='doc' name='README'/>
<file role='doc' name='README.markdown'/>
<file role='doc' name='CREDITS'/>
<file role='doc' name='LICENSE'/>
<file role='doc' name='ChangeLog'/>
Expand All @@ -59,6 +63,20 @@ 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.2</release><api>0.1.2</api></version>
<date>2009-02-06</date>
<notes>
- Fix bug #15896 (Memcached setMulti error).
- Check for empty key in getServerByKey().
- Allow passing 'null' for callbacks.
- get() with cas token fetching wasn't erroring out properly.
- Rename certain parameters in the API to be more clear.
- Allow only strings as the append/prepend value.
- Remove expiration parameter from append/prepend.
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.1.1</release><api>0.1.1</api></version>
Expand Down
2 changes: 1 addition & 1 deletion php_memcached.h
Expand Up @@ -49,7 +49,7 @@ PHP_RINIT_FUNCTION(memcached);
PHP_RSHUTDOWN_FUNCTION(memcached);
PHP_MINFO_FUNCTION(memcached);

#define PHP_MEMCACHED_VERSION "0.1.1"
#define PHP_MEMCACHED_VERSION "0.1.2"

#ifdef ZTS
#define MEMC_G(v) TSRMG(php_memcached_globals_id, zend_memcache_globals *, v)
Expand Down

0 comments on commit b90130c

Please sign in to comment.