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>2021-12-18 22:15:27 +0300
committermichael-grunder <michael.grunder@gmail.com>2021-12-18 23:05:48 +0300
commit2a130215d6b48860f9fd74d2d02808fe431446c0 (patch)
treef75bc64cb13a9e410d17d61426444a934561cde6
parent44affad249e41de24da92dd3594a6fd45087cb4f (diff)
Prepare for 5.3.5 GA release.5.3.5release/5.3.5
-rw-r--r--Changelog.md7
-rw-r--r--package.xml6
-rw-r--r--php_redis.h2
3 files changed, 10 insertions, 5 deletions
diff --git a/Changelog.md b/Changelog.md
index 79494cac..b085a2b9 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.3.5] - 2021-12-07 ([GitHub](https://github.com/phpredis/phpredis/releases/5.3.5), [PECL](https:/pecl.php.net/package/redis/5.3.5))
+## [5.3.5] - 2021-12-18 ([GitHub](https://github.com/phpredis/phpredis/releases/5.3.5), [PECL](https:/pecl.php.net/package/redis/5.3.5))
### Sponsors :sparkling_heart:
@@ -20,7 +20,10 @@ and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- [Florian Levis](https://github.com/Gounlaf)
- [Luis Zárate](https://github.com/jlzaratec)
-### NOTE: There were only changes to README.markdown between 5.3.5RC1 and 5.3.5
+### Fixed
+
+- Fixed typo in cluster_scan_resp
+ [44affad2](https://github.com/phpredis/phpredis/commit/44affad2)
## [5.3.5RC1] - 2021-11-16 ([GitHub](https://github.com/phpredis/phpredis/releases/5.3.5RC1), [PECL](https:/pecl.php.net/package/redis/5.3.5RC1))
diff --git a/package.xml b/package.xml
index 61181611..23da4292 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>2021-12-07</date>
+ <date>2021-12-18</date>
<version>
<release>5.3.5</release>
<api>5.3.5</api>
@@ -60,7 +60,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
---
- There were no code changes between 5.3.5RC1 and 5.3.5
+ phpredis 5.3.5
+
+ * Fix typo in cluster_scan_resp [44affad2] (Michael Grunder)
---
diff --git a/php_redis.h b/php_redis.h
index c32c8782..1c9371fa 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.5RC1"
+#define PHP_REDIS_VERSION "5.3.5"
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, __destruct);