Skip to content

Commit 7edcdf9

Browse files
author
Andrei Zmievski
committed
Release 0.1.5.
1 parent 172f29b commit 7edcdf9

File tree

3 files changed

+30
-6
lines changed

3 files changed

+30
-6
lines changed

ChangeLog

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

3+
Version 0.1.5
4+
-------------
5+
* Implement getVersion().
6+
* Add support for preserving boolean value types.
7+
* Fix crash when child class does not call constructor.
8+
* Fix bug #16084 (Crash when addServers is called with an associative array).
9+
* ZTS compilation fixes.
10+
311
Version 0.1.4
412
-------------
513
* Fix compilation against PHP 5.3.

package.xml

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,22 @@ http://pear.php.net/dtd/package-2.0.xsd">
1515
<email>[email protected]</email>
1616
<active>yes</active>
1717
</lead>
18-
<date>2009-02-13</date>
18+
<date>2009-03-31</date>
1919
<version>
20-
<release>0.1.4</release>
21-
<api>0.1.4</api>
20+
<release>0.1.5</release>
21+
<api>0.1.5</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-
- Fix compilation against PHP 5.3.
30-
- Add support for 'igbinary' serializer (Oleg Grenrus)
29+
- Implement getVersion().
30+
- Add support for preserving boolean value types.
31+
- Fix crash when child class does not call constructor.
32+
- Fix bug #16084 (Crash when addServers is called with an associative array).
33+
- ZTS compilation fixes.
3134
</notes>
3235
<contents>
3336
<dir name="/">
@@ -58,6 +61,19 @@ http://pear.php.net/dtd/package-2.0.xsd">
5861
<providesextension>memcached</providesextension>
5962
<extsrcrelease/>
6063
<changelog>
64+
<release>
65+
<stability><release>beta</release><api>beta</api></stability>
66+
<version><release>0.1.5</release><api>0.1.5</api></version>
67+
<date>2009-03-31</date>
68+
<notes>
69+
- Implement getVersion().
70+
- Add support for preserving boolean value types.
71+
- Fix crash when child class does not call constructor.
72+
- Fix bug #16084 (Crash when addServers is called with an associative array).
73+
- ZTS compilation fixes.
74+
</notes>
75+
</release>
76+
6177
<release>
6278
<stability><release>beta</release><api>beta</api></stability>
6379
<version><release>0.1.4</release><api>0.1.4</api></version>

php_memcached.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PHP_MINIT_FUNCTION(memcached);
4848
PHP_MSHUTDOWN_FUNCTION(memcached);
4949
PHP_MINFO_FUNCTION(memcached);
5050

51-
#define PHP_MEMCACHED_VERSION "0.1.4"
51+
#define PHP_MEMCACHED_VERSION "0.1.5"
5252

5353
#ifdef ZTS
5454
#define MEMC_G(v) TSRMG(php_memcached_globals_id, zend_php_memcached_globals *, v)

0 commit comments

Comments
 (0)