diff --git a/CHANGELOG.md b/CHANGELOG.md index 29c06ce9..47ac022d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,21 @@ +v1.1.10 (2022-01-05) +================================================================================ + +- __FIX__: Avoid PHP 8.1 deprecation notices in `Session/Handler` +- __FIX__: Fixed "Cannot use object of type Predis\Response\Error as array" +error in `Connection/Aggregate/SentinelReplication` + + v1.1.9 (2021-10-05) ================================================================================ -- Fixed PHP 8.1 compatibility in `StreamConnection` +- __FIX__: Fixed PHP 8.1 compatibility in `StreamConnection` v1.1.8 (2021-09-29) ================================================================================ -- Ensure compatibility with PHP 8.1. +- __FIX__: Ensure compatibility with PHP 8.1. v1.1.7 (2021-04-04) diff --git a/VERSION b/VERSION index 61a6ba1c..5ed5faa5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.10-dev +1.1.10 diff --git a/package.ini b/package.ini index a759264e..9672d5a2 100644 --- a/package.ini +++ b/package.ini @@ -11,7 +11,7 @@ desc = "Flexible and feature-complete Redis client for PHP and HHVM" homepage = "http://github.com/nrk/predis" license = "MIT" version = "1.1.10" -stability = "devel" +stability = "stable" channel = "pear.nrk.io" author = "Daniele Alessandri \"nrk\" " diff --git a/src/Client.php b/src/Client.php index 24776744..3538272e 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 = '1.1.10-dev'; + const VERSION = '1.1.10'; protected $connection; protected $options;