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-09-13 15:18:47 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2017-09-13 15:18:47 +0300
commit9d3f551dddfe8a64b21062d3d87994db812452b0 (patch)
treea6a3c520c09e60b89794d781f15840eecd0b73aa
parent0f4c138022c263e55ac8dc7f87dc2f6bd47cc125 (diff)
Use correct RC specifier
-rw-r--r--package.xml14
-rw-r--r--php_redis.h2
2 files changed, 8 insertions, 8 deletions
diff --git a/package.xml b/package.xml
index 68b1bedc..1cb717d9 100644
--- a/package.xml
+++ b/package.xml
@@ -29,8 +29,8 @@ http://pear.php.net/dtd/package-2.0.xsd">
</lead>
<date>2017-09-13</date>
<version>
- <release>3.1.4RC2</release>
- <api>3.1.4RC2</api>
+ <release>3.1.4RC3</release>
+ <api>3.1.4RC3</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.4RC2
+ phpredis 3.1.4RC3
The primary new feature phpredis 3.1.4 is the ability to send MULTI .. EXEC blocks in pipeline mode. There are
also many bugfixes and minor improvements to the api, listed below:
@@ -121,15 +121,15 @@ http://pear.php.net/dtd/package-2.0.xsd">
<changelog>
<release>
<stability><release>beta</release><api>beta</api></stability>
- <version><release>3.1.4RC2</release><api>3.1.4RC2</api></version>
- <date>2017-09-12</date>
+ <version><release>3.1.4RC3</release><api>3.1.4RC3</api></version>
+ <date>2017-09-13</date>
<notes>
- phpredis 3.1.4RC2
+ phpredis 3.1.4RC3
The primary new feature phpredis 3.1.4 is the ability to send MULTI .. EXEC blocks in pipeline mode. There are
also many bugfixes and minor improvements to the api, listed below:
- * Allow mixing MULTI and PIPELINE modes! [5874b0] (Pavlo Yatsukhnenko)
+ * Allow mixing MULTI and PIPELINE modes (experimental)! [5874b0] (Pavlo Yatsukhnenko)
* Added integration for coverty static analysis and fixed several warnings
[faac8b0, eff7398, 4766c25, 0438ab4, 1e0b065, 733732a, 26eeda5, 735025, 42f1c9, af71d4] (Pavlo Yatsukhnenko)
diff --git a/php_redis.h b/php_redis.h
index f3e53e24..d2f736a7 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.4RC2"
+#define PHP_REDIS_VERSION "3.1.4RC3"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);