diff --git a/CHANGELOG.md b/CHANGELOG.md index be38bf38..c681d6d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## Changelog +## v2.1.1 (2023-01-17) + +## Bug Fixes +- Fix `@template` in `Predis\Client` (#1017) +- Fix support options array in `ZINTERSTORE` and `ZUNIONSTORE` (#1018) + ## v2.1.0 (2023-01-16) ## New Features @@ -161,7 +167,7 @@ - Support Pub/Sub and Pipelines when using replication -- The class `Predis\Transaction\AbortedMultiExecException` now uses the correct +- The class `Predis\Transaction\AbortedMultiExecException` now uses the correct default types for the `$code` (integer) parameter. - __FIX__: using `strval` in `getScanOptions()` method, part of @@ -169,7 +175,7 @@ string value of `$this->match` and not passing `null` to `strlen()` function. - __FIX__: the value returned from `getArgument()` in `isReadOperation()` method, - part of `Predis\Replication\ReplicationStrategy` class, is checked to not pass + part of `Predis\Replication\ReplicationStrategy` class, is checked to not pass `null` to `sha1` function. - __FIX__: the value returned from `getArgument()` in `parseResponse()`method, diff --git a/VERSION b/VERSION index 7c7e0966..3e3c2f1e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.1-dev +2.1.1 diff --git a/src/Client.php b/src/Client.php index 5d84b40b..c33ed825 100644 --- a/src/Client.php +++ b/src/Client.php @@ -42,7 +42,7 @@ use Predis\Transaction\MultiExec as MultiExecTransaction; */ class Client implements ClientInterface, \IteratorAggregate { - const VERSION = '2.1.1-dev'; + const VERSION = '2.1.1'; /** @var OptionsInterface */ private $options;