Skip to content

Commit 5ceba7c

Browse files
Prepare for 5.3.0RC2
1 parent 3ba3f06 commit 5ceba7c

File tree

3 files changed

+53
-15
lines changed

3 files changed

+53
-15
lines changed

Changelog.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ All changes to phpredis will be documented in this file.
55
We're basing this format on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [5.3.0RC2]
9+
10+
### Sponsors :sparkling_heart:
11+
12+
- [Audiomack](https://audiomack.com)
13+
- [BlueHost](https://bluehost.com)
14+
- [Redis Cache Pro for WordPress](https://wprediscache.com/)
15+
- [Avtandil Kikabidze](https://github.com/akalongman)
16+
17+
### Fixed
18+
19+
- Fix LZ4 configuration and use pkg-config if we have it
20+
[df398cb0](https://github.com/phpredis/phpredis/commit/df398cb07cd10d870c6805d5834703dc39590b0f)
21+
([Remi Collet](https://github.com/remicollet))
22+
23+
- Make sure persistent pool ID is NULL terminated
24+
[0838b5bd](https://github.com/phpredis/phpredis/commit/0838b5bde7ef25d419868c7e705bf6c70d68ea20),
25+
[57bb95bf](https://github.com/phpredis/phpredis/commit/57bb95bf5a01a2adb74e2bf73bb285488e0d1586)
26+
([Michael Grunder](https://github.com/michael-grunder))
27+
28+
### Changed
29+
30+
- Run LZ4 tests in Travis
31+
[3ba3f06d](https://github.com/phpredis/phpredis/commit/3ba3f06d51ff126eb51dd697381c0e56b38bbcf3)
32+
([Michael Grunder](https://github.com/michael-grunder))
33+
834
## [5.3.0RC1]
935

1036
### Sponsors :sparkling_heart:

package.xml

Lines changed: 26 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,32 +27,44 @@ http://pear.php.net/dtd/package-2.0.xsd">
2727
<email>[email protected]</email>
2828
<active>no</active>
2929
</lead>
30-
<date>2020-06-25</date>
30+
<date>2020-06-26</date>
3131
<version>
32-
<release>5.3.0RC1</release>
33-
<api>5.3.0RC1</api>
32+
<release>5.3.0RC2</release>
33+
<api>5.3.0RC2</api>
3434
</version>
3535
<stability>
36-
<release>alpha</release>
37-
<api>alpha</api>
36+
<release>beta</release>
37+
<api>beta</api>
3838
</stability>
3939
<license uri="http://www.php.net/license">PHP</license>
4040
<notes>
41-
phpredis 5.3.0RC1
41+
phpredis 5.3.0RC2
42+
43+
This release contains initial support for Redis 6 ACLs, LZ4 compression,
44+
and many more fixes and improvements.
4245

43-
This release adds the first round of support for Redis 6 functionality including,
44-
most importantly ACLs. Other Redis 6 functionality is included as well such as
45-
KEEPTTL and XINFO FULL command support.
46+
You can find a detailed list of changes in Changelog.md and package.xml
4647

47-
Aside from the Redis 6 functionality this releasae contains many bugfixes and
48-
improvements.
48+
A special thanks to BlueHost for sponsoring ACL support \o/
4949

5050
* Sponsors
51-
~ Audiomack.com - https://audiomack.com
52-
~ BlueHost.com - https://bluehost.com
53-
~ Redis Cache Pro for WordPress - https://wprediscache.com/
51+
~ Audiomack - https://audiomack.com
52+
~ BlueHost - https://bluehost.com
53+
~ Redis Cache Pro for WordPress - https://wprediscache.com
5454
~ Avtandil Kikabidze - https://github.com/akalongman
5555

56+
phpredis 5.3.0RC2
57+
58+
---
59+
60+
* Fix LZ4 configuration and use pkg-config if we have it [df398cb0]
61+
(Remi Collet)
62+
* Make sure persistent pool ID is NULL terminated [0838b5bd, 57bb95bf]
63+
(Michael Grunder)
64+
* Run LZ4 tests in Travis [3ba3f06d] (Michael Grunder)
65+
66+
phpredis 5.3.0RC1
67+
5668
---
5769

5870
* Support for Redis 6 ACLs [a311cc4e] (Michael Grunder)

php_redis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define PHP_REDIS_H
2424

2525
/* phpredis version */
26-
#define PHP_REDIS_VERSION "5.3.0RC1"
26+
#define PHP_REDIS_VERSION "5.3.0RC2"
2727

2828
PHP_METHOD(Redis, __construct);
2929
PHP_METHOD(Redis, __destruct);

0 commit comments

Comments
 (0)