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-02-20 00:15:14 +0300
committermichael-grunder <michael.grunder@gmail.com>2020-02-21 03:16:38 +0300
commit9fb9dfc42bc0b2d30254d472b4c5225410acf46e (patch)
treedb4d5d5a1b4c5591b0600e028f00ad2370de3fbd
parent9ef2ed8977fde56db8d6a09d02cdd5f1a494da7c (diff)
Update changelog/package.xml and add sponsor5.2.0RC2
-rw-r--r--Changelog.md18
-rw-r--r--README.markdown5
-rw-r--r--package.xml20
3 files changed, 33 insertions, 10 deletions
diff --git a/Changelog.md b/Changelog.md
index 0cf7abc7..a7965031 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -5,22 +5,30 @@ 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.0RC2] - 2020-02-17 ([GitHub](https://github.com/phpredis/phpredis/releases/tag/5.2.0RC2), [PECL](https://pecl.php.net/package/redis/5.2.0RC2))
+## [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:
+- [Audiomack.com](https://audiomack.com)
- [Till Krüss](https://github.com/tillkruss)
-### Added
+### Fixed
- Include RedisSentinelTest.php in package.xml!
- [eddbfc8f](https://github.com/phpredis/phpredis/commits/eddbfc8f)
- ([Remi Collet](https://github.com/remicollet))
+ [eddbfc8f](https://github.com/phpredis/phpredis/commit/eddbfc8f)
+ ([Michel Grunder](https://github.com/michael-grunder))
-- Fix -Wmaybe-uninitialized warning ([Remi Collet])
+- Fix -Wmaybe-uninitialized warning
[740b8c87](https://github.com/phpredis/phpredis/commit/740b8c87)
([Remi Collet](https://github.com/remicollet))
+- Fix improper destructor when zipping values and scores
+ [371ae7ae](https://github.com/phpredis/phpredis/commit/371ae7ae)
+
+- Use php_rand instead of php_mt_rand for liveness challenge string
+ [9ef2ed89](https://github.com/phpredis/phpredis/commit/9ef2ed89)
+ ([Michael Grunder](https://github.com/michael-grunder))
+
## [5.2.0RC1] - 2020-02-15 ([GitHub](https://github.com/phpredis/phpredis/releases/tag/5.2.0RC1), [PECL](https://pecl.php.net/package/redis/5.2.0RC1))
### Sponsors :sparkling_heart:
diff --git a/README.markdown b/README.markdown
index 8e4440b7..949f1837 100644
--- a/README.markdown
+++ b/README.markdown
@@ -19,6 +19,11 @@ You can also make a one-time contribution with one of the links below.
[![Bitcoin](https://en.cryptobadges.io/badge/micro/1FXkYHBo5uoaztxFbajiPfbnkgKCbF3ykG)](https://en.cryptobadges.io/donate/1FXkYHBo5uoaztxFbajiPfbnkgKCbF3ykG)
[![Ethereum](https://en.cryptobadges.io/badge/micro/0x43D54E32357B96f68dFF0a6B46976d014Bd603E1)](https://en.cryptobadges.io/donate/0x43D54E32357B96f68dFF0a6B46976d014Bd603E1)
+## Sponsors
+
+<a href="https://audiomack.com">
+ <img src="https://styleguide.audiomack.com/styleguide/assets/dl/inline-orange-large.png" alt="Audiomack.com" width="150">
+</a>
# Table of contents
-----
diff --git a/package.xml b/package.xml
index 5e0b3675..2c211672 100644
--- a/package.xml
+++ b/package.xml
@@ -27,7 +27,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>n.favrefelix@gmail.com</email>
<active>no</active>
</lead>
- <date>2020-02-17</date>
+ <date>2020-02-21</date>
<version>
<release>5.2.0RC2</release>
<api>5.2.0RC2</api>
@@ -40,8 +40,12 @@ http://pear.php.net/dtd/package-2.0.xsd">
<notes>
phpredis 5.2.0RC2
- * Include RedisSentinelTest.php in package.xml! [eddbfc8f] (Remi Collet)
+ * Include RedisSentinelTest.php in package.xml! [eddbfc8f] (Michael Grunder)
* Fix -Wmaybe-uninitialized warning [740b8c87] (Remi Collet)
+ * Fix improper destructor when zipping values and scores [371ae7ae]
+ (Michael Grunder)
+ * Use php_rand instead of php_mt_rand for liveness challenge string
+ [9ef2ed89] (Michael Grunder)
phpredis 5.2.0RC1
@@ -54,6 +58,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
will likely change based on user feedback.
* Sponsors
+ ~ Audiomack.com - https://audiomack.com
~ Till Kruss - https://github.com/tillkruss
---
@@ -155,12 +160,16 @@ http://pear.php.net/dtd/package-2.0.xsd">
<release>
<stability><release>alpha</release><api>alpha</api></stability>
<version><release>5.2.0RC2</release><api>5.2.0RC2</api></version>
- <date>2020-02-17</date>
+ <date>2020-02-21</date>
<notes>
phpredis 5.2.0RC2
- * Include RedisSentinelTest.php in package.xml! [eddbfc8f] (Remi Collet)
- * Fix -Wmaybe-uninitialized warning ([Remi Collet]) [740b8c87]
+ * Include RedisSentinelTest.php in package.xml! [eddbfc8f] (Michael Grunder)
+ * Fix -Wmaybe-uninitialized warning [740b8c87] (Remi Collet)
+ * Fix improper destructor when zipping values and scores [371ae7ae]
+ (Michael Grunder)
+ * Use php_rand instead of php_mt_rand for liveness challenge string
+ [9ef2ed89] (Michael Grunder)
phpredis 5.2.0RC1
@@ -173,6 +182,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
will likely change based on user feedback.
* Sponsors
+ ~ Audiomack.com - https://audiomack.com
~ Till Kruss - https://github.com/tillkruss
---