bump version to 1.1.10 stable

This commit is contained in:
Till Krüss
2022-01-05 09:46:08 -08:00
parent ca1f398f7c
commit a2fb02d738
4 changed files with 13 additions and 5 deletions
+10 -2
View File
@@ -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)
+1 -1
View File
@@ -1 +1 @@
1.1.10-dev
1.1.10
+1 -1
View File
@@ -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\" <suppakilla@gmail.com>"
+1 -1
View File
@@ -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;