Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2018-04-25 14:17:49 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2018-04-25 14:27:06 +0300
commit61052e1e4bd2c3abc0da35a17ab03f45fcbe36f1 (patch)
tree9d944e301ee09a49b681dc4cc1dc67c595068cc4
parent71662fc4c42829f87f1843b4a2026c4d7875d3ad (diff)
4.0.24.0.2
-rw-r--r--package.xml27
-rw-r--r--php_redis.h2
2 files changed, 19 insertions, 10 deletions
diff --git a/package.xml b/package.xml
index 410d994d..abab00cc 100644
--- a/package.xml
+++ b/package.xml
@@ -27,10 +27,10 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>p.yatsukhnenko@gmail.com</email>
<active>yes</active>
</lead>
- <date>2018-04-18</date>
+ <date>2018-04-25</date>
<version>
- <release>4.0.1</release>
- <api>4.0.1</api>
+ <release>4.0.2</release>
+ <api>4.0.2</api>
</version>
<stability>
<release>stable</release>
@@ -38,13 +38,10 @@ http://pear.php.net/dtd/package-2.0.xsd">
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- phpredis 4.0.1
+ phpredis 4.0.2
- * Fix arginfo for connect/pconnect issue #1337 [c3b228] (@mathroc)
- * Don't leak a ZVAL [278232] (Michael Grunder)
- * Fix config.m4 for lzf issue #1325 [20e173] (Pavlo Yatsukhnenko)
- * Updates EXISTS documentation and notes change in 4.0.0 [bed186] (Michael Grunder)
- * Fix typo in notes [0bed36] (@szepeviktor)
+ This release contains only fix of exists method to take multiple keys
+ and return integer value (was broken in 4.0.1) Thanks @RanjanRohit!
</notes>
<contents>
<dir name="/">
@@ -111,6 +108,18 @@ http://pear.php.net/dtd/package-2.0.xsd">
<changelog>
<release>
<stability><release>stable</release><api>stable</api></stability>
+ <version><release>4.0.2</release><api>4.0.2</api></version>
+ <date>2018-04-25</date>
+ <notes>
+ phpredis 4.0.2
+
+ This release contains only fix of exists method to take multiple keys
+ and return integer value (was broken in 4.0.1) Thanks @RanjanRohit!
+ </notes>
+ </release>
+
+ <release>
+ <stability><release>stable</release><api>stable</api></stability>
<version><release>4.0.1</release><api>4.0.1</api></version>
<date>2018-04-18</date>
<notes>
diff --git a/php_redis.h b/php_redis.h
index 949e64cd..2dc00176 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -25,7 +25,7 @@
#define PHP_REDIS_H
/* phpredis version */
-#define PHP_REDIS_VERSION "4.0.1"
+#define PHP_REDIS_VERSION "4.0.2"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);