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-06-26 21:45:58 +0300
committermichael-grunder <michael.grunder@gmail.com>2020-06-26 23:00:12 +0300
commit5ceba7c6d9ec95509cb47258ca2f8d250a6f888f (patch)
tree1c38c4fa888e1a25c8a3cc5479995f3a37d7b395
parent3ba3f06d51ff126eb51dd697381c0e56b38bbcf3 (diff)
Prepare for 5.3.0RC25.3.0RC2
-rw-r--r--Changelog.md26
-rw-r--r--package.xml40
-rw-r--r--php_redis.h2
3 files changed, 53 insertions, 15 deletions
diff --git a/Changelog.md b/Changelog.md
index 3ed2d0a9..5c389813 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -5,6 +5,32 @@ 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.3.0RC2]
+
+### Sponsors :sparkling_heart:
+
+- [Audiomack](https://audiomack.com)
+- [BlueHost](https://bluehost.com)
+- [Redis Cache Pro for WordPress](https://wprediscache.com/)
+- [Avtandil Kikabidze](https://github.com/akalongman)
+
+### Fixed
+
+- Fix LZ4 configuration and use pkg-config if we have it
+ [df398cb0](https://github.com/phpredis/phpredis/commit/df398cb07cd10d870c6805d5834703dc39590b0f)
+ ([Remi Collet](https://github.com/remicollet))
+
+- Make sure persistent pool ID is NULL terminated
+ [0838b5bd](https://github.com/phpredis/phpredis/commit/0838b5bde7ef25d419868c7e705bf6c70d68ea20),
+ [57bb95bf](https://github.com/phpredis/phpredis/commit/57bb95bf5a01a2adb74e2bf73bb285488e0d1586)
+ ([Michael Grunder](https://github.com/michael-grunder))
+
+### Changed
+
+- Run LZ4 tests in Travis
+ [3ba3f06d](https://github.com/phpredis/phpredis/commit/3ba3f06d51ff126eb51dd697381c0e56b38bbcf3)
+ ([Michael Grunder](https://github.com/michael-grunder))
+
## [5.3.0RC1]
### Sponsors :sparkling_heart:
diff --git a/package.xml b/package.xml
index 6cbf4d41..9bad6c2a 100644
--- a/package.xml
+++ b/package.xml
@@ -27,32 +27,44 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>n.favrefelix@gmail.com</email>
<active>no</active>
</lead>
- <date>2020-06-25</date>
+ <date>2020-06-26</date>
<version>
- <release>5.3.0RC1</release>
- <api>5.3.0RC1</api>
+ <release>5.3.0RC2</release>
+ <api>5.3.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 5.3.0RC1
+ phpredis 5.3.0RC2
+
+ This release contains initial support for Redis 6 ACLs, LZ4 compression,
+ and many more fixes and improvements.
- This release adds the first round of support for Redis 6 functionality including,
- most importantly ACLs. Other Redis 6 functionality is included as well such as
- KEEPTTL and XINFO FULL command support.
+ You can find a detailed list of changes in Changelog.md and package.xml
- Aside from the Redis 6 functionality this releasae contains many bugfixes and
- improvements.
+ A special thanks to BlueHost for sponsoring ACL support \o/
* Sponsors
- ~ Audiomack.com - https://audiomack.com
- ~ BlueHost.com - https://bluehost.com
- ~ Redis Cache Pro for WordPress - https://wprediscache.com/
+ ~ Audiomack - https://audiomack.com
+ ~ BlueHost - https://bluehost.com
+ ~ Redis Cache Pro for WordPress - https://wprediscache.com
~ Avtandil Kikabidze - https://github.com/akalongman
+ phpredis 5.3.0RC2
+
+ ---
+
+ * Fix LZ4 configuration and use pkg-config if we have it [df398cb0]
+ (Remi Collet)
+ * Make sure persistent pool ID is NULL terminated [0838b5bd, 57bb95bf]
+ (Michael Grunder)
+ * Run LZ4 tests in Travis [3ba3f06d] (Michael Grunder)
+
+ phpredis 5.3.0RC1
+
---
* Support for Redis 6 ACLs [a311cc4e] (Michael Grunder)
diff --git a/php_redis.h b/php_redis.h
index 1666c597..cc3a276d 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -23,7 +23,7 @@
#define PHP_REDIS_H
/* phpredis version */
-#define PHP_REDIS_VERSION "5.3.0RC1"
+#define PHP_REDIS_VERSION "5.3.0RC2"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);