Skip to content

Commit 15c51f2

Browse files
Andrei ZmievskiRJ
authored andcommitted
Release 0.1.2.
Signed-off-by: Richard Jones <[email protected]>
1 parent 1535c70 commit 15c51f2

File tree

3 files changed

+36
-8
lines changed

3 files changed

+36
-8
lines changed

ChangeLog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
memcached extension changelog
22

3+
Version 0.1.2
4+
-------------
5+
* Fix bug #15896 (Memcached setMulti error).
6+
* Check for empty key in getServerByKey().
7+
* Allow passing 'null' for callbacks.
8+
* get() with cas token fetching wasn't erroring out properly.
9+
* Rename certain parameters in the API to be more clear.
10+
* Allow only strings as the append/prepend value.
11+
* Remove expiration parameter from append/prepend.
12+
313
Version 0.1.1
414
-------------
515
* Add OPT_LIBKETAMA_COMPATIBLE option.

package.xml

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,29 @@ http://pear.php.net/dtd/package-2.0.xsd">
1515
<email>[email protected]</email>
1616
<active>yes</active>
1717
</lead>
18-
<date>2009-02-02</date>
18+
<date>2009-02-06</date>
1919
<version>
20-
<release>0.1.1</release>
21-
<api>0.1.1</api>
20+
<release>0.1.2</release>
21+
<api>0.1.2</api>
2222
</version>
2323
<stability>
2424
<release>beta</release>
2525
<api>beta</api>
2626
</stability>
2727
<license uri="http://www.php.net/license">PHP</license>
2828
<notes>
29-
- Add OPT_LIBKETAMA_COMPATIBLE option.
30-
- Implement addServers() method.
31-
- Swap internal compressed and serialized flags to be compatible with other clients.
29+
- Fix bug #15896 (Memcached setMulti error).
30+
- Check for empty key in getServerByKey().
31+
- Allow passing 'null' for callbacks.
32+
- get() with cas token fetching wasn't erroring out properly.
33+
- Rename certain parameters in the API to be more clear.
34+
- Allow only strings as the append/prepend value.
35+
- Remove expiration parameter from append/prepend.
3236
</notes>
3337
<contents>
3438
<dir name="/">
3539
<file role='doc' name='EXPERIMENTAL'/>
36-
<file role='doc' name='README'/>
40+
<file role='doc' name='README.markdown'/>
3741
<file role='doc' name='CREDITS'/>
3842
<file role='doc' name='LICENSE'/>
3943
<file role='doc' name='ChangeLog'/>
@@ -59,6 +63,20 @@ http://pear.php.net/dtd/package-2.0.xsd">
5963
<providesextension>memcached</providesextension>
6064
<extsrcrelease/>
6165
<changelog>
66+
<release>
67+
<stability><release>beta</release><api>beta</api></stability>
68+
<version><release>0.1.2</release><api>0.1.2</api></version>
69+
<date>2009-02-06</date>
70+
<notes>
71+
- Fix bug #15896 (Memcached setMulti error).
72+
- Check for empty key in getServerByKey().
73+
- Allow passing 'null' for callbacks.
74+
- get() with cas token fetching wasn't erroring out properly.
75+
- Rename certain parameters in the API to be more clear.
76+
- Allow only strings as the append/prepend value.
77+
- Remove expiration parameter from append/prepend.
78+
</notes>
79+
</release>
6280
<release>
6381
<stability><release>beta</release><api>beta</api></stability>
6482
<version><release>0.1.1</release><api>0.1.1</api></version>

php_memcached.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ PHP_RINIT_FUNCTION(memcached);
4949
PHP_RSHUTDOWN_FUNCTION(memcached);
5050
PHP_MINFO_FUNCTION(memcached);
5151

52-
#define PHP_MEMCACHED_VERSION "0.1.1"
52+
#define PHP_MEMCACHED_VERSION "0.1.2"
5353

5454
#ifdef ZTS
5555
#define MEMC_G(v) TSRMG(php_memcached_globals_id, zend_memcache_globals *, v)

0 commit comments

Comments
 (0)