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;