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>2020-03-02 05:10:39 +0300
committermichael-grunder <michael.grunder@gmail.com>2020-03-02 05:10:39 +0300
commit0229a793c3fa5993a6d3f10ec92c8f6036f06920 (patch)
treee01b3bb6cd72b18307ee6f42a5aee47992f35374
parent9fb9dfc42bc0b2d30254d472b4c5225410acf46e (diff)
Update version info, changelog, and package.xml5.2.0
-rw-r--r--Changelog.md4
-rw-r--r--package.xml14
-rw-r--r--php_redis.h2
-rw-r--r--redis_sentinel.h2
4 files changed, 15 insertions, 7 deletions
diff --git a/Changelog.md b/Changelog.md
index a7965031..053953af 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -5,6 +5,10 @@ All changes to phpredis will be documented in this file.
We're basing this format on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [5.2.0] - 2020-03-02 ([GitHub](https://github.com/phpredis/phpredis/releases/tag/5.2.0), [PECL](https://pecl.php.net/package/redis/5.2.0))
+
+*There were no changes between 5.2.0RC2 and 5.2.0*
+
## [5.2.0RC2] - 2020-02-21 ([GitHub](https://github.com/phpredis/phpredis/releases/tag/5.2.0RC2), [PECL](https://pecl.php.net/package/redis/5.2.0RC2))
### Sponsors :sparkling_heart:
diff --git a/package.xml b/package.xml
index 2c211672..190567f8 100644
--- a/package.xml
+++ b/package.xml
@@ -27,17 +27,21 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>n.favrefelix@gmail.com</email>
<active>no</active>
</lead>
- <date>2020-02-21</date>
+ <date>2020-03-02</date>
<version>
- <release>5.2.0RC2</release>
- <api>5.2.0RC2</api>
+ <release>5.2.0</release>
+ <api>5.2.0</api>
</version>
<stability>
- <release>alpha</release>
- <api>alpha</api>
+ <release>stable</release>
+ <api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
+ phpredis 5.2.0
+
+ - There were no changes between 5.2.0RC2 and 5.2.0.
+
phpredis 5.2.0RC2
* Include RedisSentinelTest.php in package.xml! [eddbfc8f] (Michael Grunder)
diff --git a/php_redis.h b/php_redis.h
index ba2d6ec8..af77ea00 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -23,7 +23,7 @@
#define PHP_REDIS_H
/* phpredis version */
-#define PHP_REDIS_VERSION "5.2.0RC2"
+#define PHP_REDIS_VERSION "5.2.0"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);
diff --git a/redis_sentinel.h b/redis_sentinel.h
index f5caa253..651cc1b8 100644
--- a/redis_sentinel.h
+++ b/redis_sentinel.h
@@ -3,7 +3,7 @@
#include "sentinel_library.h"
-#define PHP_REDIS_SENTINEL_VERSION "0.1RC2"
+#define PHP_REDIS_SENTINEL_VERSION "0.1"
PHP_METHOD(RedisSentinel, __construct);
PHP_METHOD(RedisSentinel, ckquorum);