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-02-21 11:17:30 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2018-02-21 11:17:30 +0300
commit26a3abf060b611e85f65e480dfac83ab4114d78e (patch)
tree2ff7eec03d43da5af8b405766bc093762a8868a3
parent9240293546765386b827d01739f899e60045b78a (diff)
4.0.0RC2
-rw-r--r--package.xml23
-rw-r--r--php_redis.h2
2 files changed, 14 insertions, 11 deletions
diff --git a/package.xml b/package.xml
index b921107f..f694aa10 100644
--- a/package.xml
+++ b/package.xml
@@ -27,18 +27,18 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>p.yatsukhnenko@gmail.com</email>
<active>yes</active>
</lead>
- <date>2018-02-07</date>
+ <date>2018-02-21</date>
<version>
- <release>4.0.0RC1</release>
- <api>4.0.0RC1</api>
+ <release>4.0.0RC2</release>
+ <api>4.0.0RC2</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 4.0.0RC1
+ phpredis 4.0.0RC2
*** WARNING! THIS RELEASE CONTAINS BRAKING API CHANGES! ***
@@ -124,11 +124,11 @@ http://pear.php.net/dtd/package-2.0.xsd">
</extsrcrelease>
<changelog>
<release>
- <stability><release>alpha</release><api>alpha</api></stability>
- <version><release>4.0.0RC1</release><api>4.0.0RC1</api></version>
- <date>2018-02-07</date>
+ <stability><release>beta</release><api>beta</api></stability>
+ <version><release>4.0.0RC2</release><api>4.0.0RC2</api></version>
+ <date>2018-02-21</date>
<notes>
- phpredis 4.0.0RC1
+ phpredis 4.0.0RC2
*** WARNING! THIS RELEASE CONTAINS BRAKING API CHANGES! ***
@@ -139,12 +139,15 @@ http://pear.php.net/dtd/package-2.0.xsd">
* Return real connection error as exception [5b9c0c60] (Pavlo Yatsukhnenko, Michael Grunder)
* Disallow using empty string as session name. [485db46f] (Pavlo Yatsukhnenko)
* Use zend_string for storing auth and prefix members [4b8336f7] (Pavlo Yatsukhnenko)
+ * The element of z_seeds may be a reference on php7 [367bc6aa, 1e63717a] (@janic716)
* Avoid connection in helper methods [91e9cfe1] (Pavlo Yatsukhnenko)
* Add tcp_keepalive option to redis sock [68c58513, 5101172a, 010336d5, 51e48729] (@git-hulk, Michael Grunder)
* More robust GEORADIUS COUNT validation [f7edee5d] (Michael Grunder)
* Add LZF compression (experimental) [e2c51251, 8cb2d5bd, 8657557] (Pavlo Yatsukhnenko)
* Allow to use empty string as persistant_id [ec4fd1bd] (Pavlo Yatsukhnenko)
* Don't use convert_to_string in redis_hmget_cmd [99335d6] (Pavlo Yatsukhnenko)
+ * Allow mixing MULTI and PIPELINE modes (experimental) [5874b0] (Pavlo Yatsukhnenko)
+ * PHP >=7.3.0 uses zend_string to store `php_url` elements [b566fb44] (@fmk)
* Documentation improvements (Michael Grunder, @TomA-R)
</notes>
</release>
diff --git a/php_redis.h b/php_redis.h
index ea60c3a2..66855213 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -25,7 +25,7 @@
#define PHP_REDIS_H
/* phpredis version */
-#define PHP_REDIS_VERSION "develop"
+#define PHP_REDIS_VERSION "4.0.0RC2"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);