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-01-03 12:20:21 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2018-01-03 12:20:21 +0300
commit17d30d88a5ba67389e05dd6719cf3bfe8c7eb727 (patch)
tree02313ba98f0979682a697d52d5908ea8922320ab
parenta23cc4752708d1adea0dc863570897bb46476fcd (diff)
3.1.63.1.6
-rw-r--r--package.xml30
-rw-r--r--php_redis.h2
2 files changed, 19 insertions, 13 deletions
diff --git a/package.xml b/package.xml
index 1c7c537f..2e44b005 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-12-20</date>
+ <date>2018-01-03</date>
<version>
- <release>3.1.5</release>
- <api>3.1.5</api>
+ <release>3.1.6</release>
+ <api>3.1.6</api>
</version>
<stability>
<release>stable</release>
@@ -38,16 +38,10 @@ http://pear.php.net/dtd/package-2.0.xsd">
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- phpredis 3.1.5
-
- This is interim release which contains only bug fixes.
+ phpredis 3.1.6
- * Fix segfault when extending Redis class in PHP 5 [d23eff] (Pavlo Yatsukhnenko)
- * Fix RedisCluster constructor with PHP 7 strict scalar type [5c21d7] (Pavlo Yatsukhnenko)
- * Allow to use empty string as persistant_id [344de5] (Pavlo Yatsukhnenko)
- * Fix cluster_init_seeds. [db1347] (@adlagares)
- * Fix z_seeds may be a reference [42581a] (@janic716)
- * PHP >=7.3 uses zend_string for php_url elements [b566fb] (@fmk)
+ This release conains only fix of RedisArray distributor hashing function
+ which was broken in 3.1.4. Huge thanks to @rexchen123
</notes>
<contents>
<dir name="/">
@@ -105,6 +99,18 @@ http://pear.php.net/dtd/package-2.0.xsd">
<changelog>
<release>
<stability><release>stable</release><api>stable</api></stability>
+ <version><release>3.1.6</release><api>3.1.6</api></version>
+ <date>2018-01-03</date>
+ <notes>
+ phpredis 3.1.6
+
+ This release conains only fix of RedisArray distributor hashing function
+ which was broken in 3.1.4. Huge thanks to @rexchen123
+ </notes>
+ </release>
+
+ <release>
+ <stability><release>stable</release><api>stable</api></stability>
<version><release>3.1.5</release><api>3.1.5</api></version>
<date>2017-12-20</date>
<notes>
diff --git a/php_redis.h b/php_redis.h
index 6a6497c6..f776c20f 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.5"
+#define PHP_REDIS_VERSION "3.1.6"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);