Prepare v3.4.1 release (#1647)

This commit is contained in:
Till Krüss
2026-02-23 11:51:21 -08:00
committed by GitHub
parent 581c5659bd
commit 0850f2f36e
3 changed files with 7 additions and 9 deletions
+5 -7
View File
@@ -1,15 +1,13 @@
## Changelog
### Unreleased
- Fixed getParameter() call on array + added integration testing with Sentinel (#2423)
## v3.4.1 (2026-02-23)
### Added
- Make HTTL and HPTTL commands Prefixable (#1639)
- Make LMPOP and BLMPOP commands prefixable (#1643)
- Made `H(P)TTL` commands prefixable (#1639)
- Made `(B)LMPOP` commands prefixable (#1643)
## v3.4.1 (2026-02-11)
### Fixed
- Removed static from callables because it is deprecated since PHP 8.2
- Fixed Sentinel `getParameter()` call on array error (#2423)
- Removed deprecated `static` from callables (#1642)
## v3.4.0 (2026-02-11)
### Added
+1 -1
View File
@@ -1 +1 @@
3.4.0
3.4.1
+1 -1
View File
@@ -56,7 +56,7 @@ use Traversable;
*/
class Client implements ClientInterface, IteratorAggregate
{
public const VERSION = '3.4.0';
public const VERSION = '3.4.1';
/** @var OptionsInterface */
private $options;