From 0850f2f36ee179f0ff96c92c750e1366c6cd754c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Till=20Kr=C3=BCss?= Date: Mon, 23 Feb 2026 11:51:21 -0800 Subject: [PATCH] Prepare v3.4.1 release (#1647) --- CHANGELOG.md | 12 +++++------- VERSION | 2 +- src/Client.php | 2 +- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46538989..07da0eb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/VERSION b/VERSION index fbcbf738..47b322c9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.4.0 \ No newline at end of file +3.4.1 diff --git a/src/Client.php b/src/Client.php index 07425fba..f05f0790 100644 --- a/src/Client.php +++ b/src/Client.php @@ -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;