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-05-05 19:11:28 +0300
committermichael-grunder <michael.grunder@gmail.com>2020-05-05 19:11:28 +0300
commit2a5e1b6266e500244761b6f25ce12468099ebcfd (patch)
treef3e08f3f4b1cb2d8be8e66b83d240ac0ab0c3be4
parent3fd39f2a9173806a0a69f0f2f5ef65b6941c177b (diff)
Prepare for 5.2.25.2.2
-rw-r--r--Changelog.md6
-rw-r--r--package.xml10
-rw-r--r--php_redis.h2
3 files changed, 9 insertions, 9 deletions
diff --git a/Changelog.md b/Changelog.md
index e411f46d..19da9a4c 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -5,7 +5,7 @@ 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.2RC1] - 2020-05-05 ([GitHub](https://github.com/phpredis/phpredis/releases/tag/5.2.2RC1), [PECL](https://pecl.php.net/package/redis/5.2.2RC1))
+## [5.2.2] - 2020-05-05 ([GitHub](https://github.com/phpredis/phpredis/releases/tag/5.2.2), [PECL](https://pecl.php.net/package/redis/5.2.2))
### Sponsors :sparkling_heart:
@@ -15,11 +15,11 @@ and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
### Added
- An inexpensive zero second timeout liveness check that can detect dropped connections quickly.
- [56898f81](https://github.com/phpredis/phpredis/commit/80f2529b)
+ [56898f81](https://github.com/phpredis/phpredis/commit/56898f81)
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko))
- An option to make our `ECHO` challenge/response optional for persistent connections.
- [56898f81](https://github.com/phpredis/phpredis/commit/80f2529b)
+ [56898f81](https://github.com/phpredis/phpredis/commit/56898f81)
([Pavlo Yatsukhnenko](https://github.com/yatsukhnenko))
diff --git a/package.xml b/package.xml
index 807ba2dd..0a2dd343 100644
--- a/package.xml
+++ b/package.xml
@@ -29,16 +29,16 @@ http://pear.php.net/dtd/package-2.0.xsd">
</lead>
<date>2020-05-05</date>
<version>
- <release>5.2.2RC1</release>
- <api>5.2.2RC1</api>
+ <release>5.2.2</release>
+ <api>5.2.2</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.2RC1
+ phpredis 5.2.2
This is a bugfix release that contains a fix for authentication
when using persistent connections, and an option to make the
diff --git a/php_redis.h b/php_redis.h
index d6d9a2d7..3b5b6a27 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.2RC1"
+#define PHP_REDIS_VERSION "5.2.2"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);