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>2019-07-29 17:49:42 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2019-07-29 18:04:02 +0300
commit65a14af68d18be99dfa57601e0d5864d89d1d134 (patch)
treedae61f7d8adb7783c0143c0edf4d725caacf17a9
parent135a62de6e0f59f7a9f4af653ce02832a2cfae7d (diff)
5.0.25.0.2
-rw-r--r--package.xml31
-rw-r--r--php_redis.h2
2 files changed, 27 insertions, 6 deletions
diff --git a/package.xml b/package.xml
index 3488b1dd..1f4ccc4e 100644
--- a/package.xml
+++ b/package.xml
@@ -27,9 +27,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>n.favrefelix@gmail.com</email>
<active>no</active>
</lead>
- <date>2019-07-12</date>
+ <date>2019-07-29</date>
<version>
- <release>5.0.1</release>
+ <release>5.0.2</release>
<api>5.0.0</api>
</version>
<stability>
@@ -38,9 +38,14 @@ http://pear.php.net/dtd/package-2.0.xsd">
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- This release contains only bugfix for one critical issue
-
- * RedisCluster segfaults after second connection with cache_slots enabled [327cf0bd] (Pavlo Yatsukhnenko)
+ This release contains bugfixes and changes that necessary for PHP-7.4 compatibility
+
+ * Cleanup TSRMLS_* usage [94380227] (Remi Collet)
+ * Replace ulong with zend_ulong [b4eb158a] (Remi Collet)
+ * Replace uint with uint32_t [d6fc5c73] (Remi Collet)
+ * Fix regression for conntecting to ports > 32767 [1f41da64] (Owen Smith)
+ * RedisCluster segfaults after second connection with cache_slots enabled [f52cd237, cb5d6b94] (Pavlo Yatsukhnenko, Michael Grunder)
+ * Documentation improvements (Michael Grunder)
</notes>
<contents>
<dir name="/">
@@ -111,6 +116,22 @@ http://pear.php.net/dtd/package-2.0.xsd">
<changelog>
<release>
<stability><release>stable</release><api>stable</api></stability>
+ <version><release>5.0.2</release><api>5.0.0</api></version>
+ <date>2019-07-29</date>
+ <notes>
+ This release contains bugfixes and changes that necessary for PHP-7.4 compatibility
+
+ * Cleanup TSRMLS_* usage [94380227] (Remi Collet)
+ * Replace ulong with zend_ulong [b4eb158a] (Remi Collet)
+ * Replace uint with uint32_t [d6fc5c73] (Remi Collet)
+ * Fix regression for conntecting to ports > 32767 [1f41da64] (Owen Smith)
+ * RedisCluster segfaults after second connection with cache_slots enabled [f52cd237, cb5d6b94] (Pavlo Yatsukhnenko, Michael Grunder)
+ * Documentation improvements (Michael Grunder)
+ </notes>
+ </release>
+
+ <release>
+ <stability><release>stable</release><api>stable</api></stability>
<version><release>5.0.1</release><api>5.0.0</api></version>
<date>2019-07-12</date>
<notes>
diff --git a/php_redis.h b/php_redis.h
index 26843e52..8c1840b8 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -25,7 +25,7 @@
#define PHP_REDIS_H
/* phpredis version */
-#define PHP_REDIS_VERSION "5.0.1"
+#define PHP_REDIS_VERSION "5.0.2"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);