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-07-10 16:20:34 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2018-07-10 16:20:34 +0300
commit09fbc54d5197805db9918167be6026a47c46fe11 (patch)
treeb32388b2afb7584040262c7e366f3712a49ff3a3
parent77cbdf14d890e1bc114a6bb076b25c136b1efa55 (diff)
4.1.04.1.0
-rw-r--r--package.xml22
-rw-r--r--php_redis.h2
2 files changed, 13 insertions, 11 deletions
diff --git a/package.xml b/package.xml
index b27bf283..88bd6256 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-06-22</date>
+ <date>2018-07-10</date>
<version>
- <release>4.1.0RC3</release>
- <api>4.1.0RC3</api>
+ <release>4.1.0</release>
+ <api>4.1.0</api>
</version>
<stability>
- <release>beta</release>
- <api>beta</api>
+ <release>stable</release>
+ <api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- phpredis 4.1.0RC3
+ phpredis 4.1.0
The primary new feature of this release is session locking functionality. Thanks to @SkydiveMarius!
@@ -49,6 +49,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
* Split INSTALL and add more instructions [43613d9e,80d2a917] (@remicollet, Pavlo Yatsukhnenko)
* Only the first arg of connect and pconnect is required [063b5c1a] (@mathroc)
* Add session locking functionality [300c7251] (@SkydiveMarius, Michael Grunder, Pavlo Yatsukhnenko)
+ * Fix compression in RedisCluster [1aed74b4] (Pavlo Yatsukhnenko)
* Refactor geo* commands + documentation improvements (Michael Grunder)
</notes>
<contents>
@@ -119,11 +120,11 @@ http://pear.php.net/dtd/package-2.0.xsd">
</extsrcrelease>
<changelog>
<release>
- <stability><release>beta</release><api>beta</api></stability>
- <version><release>4.1.0RC3</release><api>4.1.0RC3</api></version>
- <date>2018-06-22</date>
+ <stability><release>stable</release><api>stable</api></stability>
+ <version><release>4.1.0</release><api>4.1.0</api></version>
+ <date>2018-01-10</date>
<notes>
- phpredis 4.1.0RC3
+ phpredis 4.1.0
The primary new feature of this release is session locking functionality. Thanks to @SkydiveMarius!
@@ -134,6 +135,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
* Split INSTALL and add more instructions [43613d9e,80d2a917] (@remicollet, Pavlo Yatsukhnenko)
* Only the first arg of connect and pconnect is required [063b5c1a] (@mathroc)
* Add session locking functionality [300c7251] (@SkydiveMarius, Michael Grunder, Pavlo Yatsukhnenko)
+ * Fix compression in RedisCluster [1aed74b4] (Pavlo Yatsukhnenko)
* Refactor geo* commands + documentation improvements (Michael Grunder)
</notes>
</release>
diff --git a/php_redis.h b/php_redis.h
index 6dbe0596..31b2f5b9 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -25,7 +25,7 @@
#define PHP_REDIS_H
/* phpredis version */
-#define PHP_REDIS_VERSION "4.1.0RC3"
+#define PHP_REDIS_VERSION "4.1.0"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);