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>2017-06-27 13:43:25 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2017-06-27 13:47:36 +0300
commite88721834f65bbf444fc04405c5431c50b7022e7 (patch)
treee44015711b4a77823d80a51d35962d3e980cc5b0
parent4a81e1a0f40f92d10daf3145a6bfee92149ba7d8 (diff)
3.1.3RC23.1.3RC2
-rw-r--r--package.xml16
-rw-r--r--php_redis.h2
2 files changed, 10 insertions, 8 deletions
diff --git a/package.xml b/package.xml
index 6a0707e8..4628b3fd 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>2017-06-01</date>
+ <date>2017-06-27</date>
<version>
- <release>3.1.3RC1</release>
- <api>3.1.3RC1</api>
+ <release>3.1.3RC2</release>
+ <api>3.1.3RC2</api>
</version>
<stability>
<release>beta</release>
@@ -38,7 +38,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- phpredis 3.1.3RC1
+ phpredis 3.1.3RC2
This release contains two big improvements:
1. Adding a new printf like command construction function with additionaly format specifiers specific to phpredis.
@@ -62,6 +62,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
* Fix Redis/RedisArray segfaults [be5c1f, 635c3a, 1f8dde, 43e1e0] (Pavlo Yatsukhnenko)
* Fix memory leak and potential segfault [aa6ff7, 88efaa] (Michael Grunder)
* Throw exception for all non recoverable errors [e37239] (Pavlo Yatsukhnenko)
+ * Assume "NULL bulk" reply as success (empty session data) [4a81e1] (Pavlo Yatsukhnenko)
* Increase read buffers size [520e06] (Pavlo Yatsukhnenko)
* Better documentation [f0c25a, c5991f, 9ec9ae] (Michael Grunder)
* Better TravisCI integration [e37c08] (Pavlo Yatsukhnenko)
@@ -123,10 +124,10 @@ http://pear.php.net/dtd/package-2.0.xsd">
<changelog>
<release>
<stability><release>beta</release><api>beta</api></stability>
- <version><release>3.1.3RC1</release><api>3.1.3RC1</api></version>
- <date>2017-06-01</date>
+ <version><release>3.1.3RC2</release><api>3.1.3RC2</api></version>
+ <date>2017-06-27</date>
<notes>
- phpredis 3.1.3RC1
+ phpredis 3.1.3RC2
This release contains two big improvements:
1. Adding a new printf like command construction function with additionaly format specifiers specific to phpredis.
@@ -150,6 +151,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
* Fix Redis/RedisArray segfaults [be5c1f, 635c3a, 1f8dde, 43e1e0] (Pavlo Yatsukhnenko)
* Fix memory leak and potential segfault [aa6ff7, 88efaa] (Michael Grunder)
* Throw exception for all non recoverable errors [e37239] (Pavlo Yatsukhnenko)
+ * Assume "NULL bulk" reply as success (empty session data) [4a81e1] (Pavlo Yatsukhnenko)
* Increase read buffers size [520e06] (Pavlo Yatsukhnenko)
* Better documentation [f0c25a, c5991f, 9ec9ae] (Michael Grunder)
* Better TravisCI integration [e37c08] (Pavlo Yatsukhnenko)
diff --git a/php_redis.h b/php_redis.h
index 0a49e04f..c2bdc7c1 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -25,7 +25,7 @@
#define PHP_REDIS_H
/* phpredis version */
-#define PHP_REDIS_VERSION "3.1.3RC1"
+#define PHP_REDIS_VERSION "3.1.3RC2"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);