diff --git a/CHANGELOG.md b/CHANGELOG.md index ed00bf65..9d7c59f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -v2.0.0-beta.1 (2022-05-26) +v2.0.0 (2022-06-08) ================================================================================ - Dropped support for PHP 7.1 and older @@ -120,3 +120,8 @@ v2.0.0-beta.1 (2022-05-26) - __FIX__: the value returned from `getArgument()` in `parseResponse()`method, part of `Predis\Command\Redis\SENTINEL` class, is checked to not pass `null` to `strtolower()` function. + +v2.0.0-beta.1 (2022-05-26) +================================================================================ + +Same as v2.0.0 diff --git a/VERSION b/VERSION index 6060c31a..227cea21 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.0-beta.1 +2.0.0 diff --git a/src/Client.php b/src/Client.php index a3e61ea6..e4c8ba89 100644 --- a/src/Client.php +++ b/src/Client.php @@ -40,7 +40,7 @@ use Predis\Transaction\MultiExec as MultiExecTransaction; */ class Client implements ClientInterface, \IteratorAggregate { - const VERSION = '2.0.0-beta.1'; + const VERSION = '2.0.0'; /** @var OptionsInterface */ private $options;