From 34fb0a7da0330df1bab4280fcac4afdeeccc3edf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Till=20Kr=C3=BCss?= Date: Fri, 16 May 2025 11:30:32 -0700 Subject: [PATCH] bump version (#1542) --- CHANGELOG.md | 9 +++------ VERSION | 2 +- src/Client.php | 2 +- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a89c8d77..b44b295f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,9 @@ ## Changelog -## Unreleased + +## v3.0.1 (2025-05-16) ### Fixed -- fix(auth): Adds default user if only password used for authentication (#1535) - -## Unreleased -### Maintenance -- Testing with Redis 8.0.1 (#1538) +- Send `default` user if only password is used for authentication (#1535) ## v3.0.0 (2025-05-02) ### Added diff --git a/VERSION b/VERSION index 56fea8a0..13d683cc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.0 \ No newline at end of file +3.0.1 \ No newline at end of file diff --git a/src/Client.php b/src/Client.php index b285e3bc..7ccaf6af 100644 --- a/src/Client.php +++ b/src/Client.php @@ -54,7 +54,7 @@ use Traversable; */ class Client implements ClientInterface, IteratorAggregate { - public const VERSION = '3.0.0'; + public const VERSION = '3.0.1'; /** @var OptionsInterface */ private $options;