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:
authormichael-grunder <michael.grunder@gmail.com>2019-06-25 22:58:47 +0300
committermichael-grunder <michael.grunder@gmail.com>2019-06-25 22:58:47 +0300
commitbbf9487d3b2dd789712c23ba5a824e390bc65993 (patch)
treeaf6c480c020bd63fe825c3508e42b1348a1b0a1d
parent7ea9d76e411957a922a654dd4ee28dced14a23c2 (diff)
5.0.0RC25.0.0RC2
-rw-r--r--package.xml34
-rw-r--r--php_redis.h2
2 files changed, 24 insertions, 12 deletions
diff --git a/package.xml b/package.xml
index 58b3a37c..081742de 100644
--- a/package.xml
+++ b/package.xml
@@ -27,23 +27,29 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>n.favrefelix@gmail.com</email>
<active>no</active>
</lead>
- <date>2019-06-20</date>
+ <date>2019-06-25</date>
<version>
- <release>5.0.0RC1</release>
+ <release>5.0.0RC2</release>
<api>5.0.0</api>
</version>
<stability>
- <release>alpha</release>
- <api>alpha</api>
+ <release>beta</release>
+ <api>beta</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- phpredis 5.0.0RC1
-
This release contains important improvements and breaking changes.
The most interesting are: drop PHP5 support, RedisCluster slots caching,
JSON and msgpack serializers, soft deprecation of non-Redis commands.
+ phpredis 5.0.0RC2
+
+ * Allow compilation without JSON serialization enabled and fixes for deprecated
+ helper methods. [235a27] (Pavlo Yatsukhnenko)
+ * Fix php msgpack >= 2.0.3 version requirement. [6973478..a537df8] (Michael Grunder)
+
+ phpredis 5.0.0RC1
+
* Enable connection pooling by default [8206b147] (Pavlo Yatsukhnenko)
* Soft deprecate methods that aren't actually Redis commands [a81b4f2d, 95c8aab9] (Pavlo Yatsukhnenko, Michael Grunder)
* Enable pooling for cluster slave nodes [17600dd1] (Michael Grunder)
@@ -132,16 +138,22 @@ http://pear.php.net/dtd/package-2.0.xsd">
</extsrcrelease>
<changelog>
<release>
- <stability><release>alpha</release><api>alpha</api></stability>
- <version><release>5.0.0RC1</release><api>5.0.0</api></version>
- <date>2019-06-20</date>
+ <stability><release>beta</release><api>beta</api></stability>
+ <version><release>5.0.0RC2</release><api>5.0.0</api></version>
+ <date>2019-06-25</date>
<notes>
- phpredis 5.0.0RC1
-
This release contains important improvements and breaking changes.
The most interesting are: drop PHP5 support, RedisCluster slots caching,
JSON and msgpack serializers, soft deprecation of non-Redis commands.
+ phpredis 5.0.0RC2
+
+ * Allow compilation without JSON serialization enabled and fixes for deprecated
+ helper methods. [235a27] (Pavlo Yatsukhnenko)
+ * Fix php msgpack >= 2.0.3 version requirement. [6973478..a537df8] (Michael Grunder)
+
+ phpredis 5.0.0RC1
+
* Enable connection pooling by default [8206b147] (Pavlo Yatsukhnenko)
* Soft deprecate methods that aren't actually Redis commands [a81b4f2d, 95c8aab9] (Pavlo Yatsukhnenko, Michael Grunder)
* Enable pooling for cluster slave nodes [17600dd1] (Michael Grunder)
diff --git a/php_redis.h b/php_redis.h
index 5089112e..7f4dd0da 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.0RC1"
+#define PHP_REDIS_VERSION "5.0.0RC2"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);