Skip to content

Commit 61052e1

Browse files
committed
4.0.2
1 parent 71662fc commit 61052e1

File tree

2 files changed

+19
-10
lines changed

2 files changed

+19
-10
lines changed

package.xml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,21 @@ http://pear.php.net/dtd/package-2.0.xsd">
2727
<email>[email protected]</email>
2828
<active>yes</active>
2929
</lead>
30-
<date>2018-04-18</date>
30+
<date>2018-04-25</date>
3131
<version>
32-
<release>4.0.1</release>
33-
<api>4.0.1</api>
32+
<release>4.0.2</release>
33+
<api>4.0.2</api>
3434
</version>
3535
<stability>
3636
<release>stable</release>
3737
<api>stable</api>
3838
</stability>
3939
<license uri="http://www.php.net/license">PHP</license>
4040
<notes>
41-
phpredis 4.0.1
41+
phpredis 4.0.2
4242

43-
* Fix arginfo for connect/pconnect issue #1337 [c3b228] (@mathroc)
44-
* Don't leak a ZVAL [278232] (Michael Grunder)
45-
* Fix config.m4 for lzf issue #1325 [20e173] (Pavlo Yatsukhnenko)
46-
* Updates EXISTS documentation and notes change in 4.0.0 [bed186] (Michael Grunder)
47-
* Fix typo in notes [0bed36] (@szepeviktor)
43+
This release contains only fix of exists method to take multiple keys
44+
and return integer value (was broken in 4.0.1) Thanks @RanjanRohit!
4845
</notes>
4946
<contents>
5047
<dir name="/">
@@ -109,6 +106,18 @@ http://pear.php.net/dtd/package-2.0.xsd">
109106
<configureoption name="enable-redis-lzf" prompt="enable lzf compression support?" default="no"/>
110107
</extsrcrelease>
111108
<changelog>
109+
<release>
110+
<stability><release>stable</release><api>stable</api></stability>
111+
<version><release>4.0.2</release><api>4.0.2</api></version>
112+
<date>2018-04-25</date>
113+
<notes>
114+
phpredis 4.0.2
115+
116+
This release contains only fix of exists method to take multiple keys
117+
and return integer value (was broken in 4.0.1) Thanks @RanjanRohit!
118+
</notes>
119+
</release>
120+
112121
<release>
113122
<stability><release>stable</release><api>stable</api></stability>
114123
<version><release>4.0.1</release><api>4.0.1</api></version>

php_redis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#define PHP_REDIS_H
2626

2727
/* phpredis version */
28-
#define PHP_REDIS_VERSION "4.0.1"
28+
#define PHP_REDIS_VERSION "4.0.2"
2929

3030
PHP_METHOD(Redis, __construct);
3131
PHP_METHOD(Redis, __destruct);

0 commit comments

Comments
 (0)