bump version

This commit is contained in:
Till Krüss
2022-10-11 09:52:29 -07:00
parent 1a0eb7ee85
commit ff59f74581
3 changed files with 9 additions and 2 deletions
+7
View File
@@ -1,5 +1,12 @@
## Changelog
## v2.0.3 (2022-10-11)
- Improved PHP 8.2 support
- Call `is_resource()` before reading/writing
- Added partial support for Redis Stream commands
- Fixed Sentinel authentication issue
## v2.0.2 (2022-09-06)
- Fixed PHP 8.2 deprecation notice: Use of "static" in callables
+1 -1
View File
@@ -1 +1 @@
2.0.2
2.0.3
+1 -1
View File
@@ -40,7 +40,7 @@ use Predis\Transaction\MultiExec as MultiExecTransaction;
*/
class Client implements ClientInterface, \IteratorAggregate
{
const VERSION = '2.0.2';
const VERSION = '2.0.3';
/** @var OptionsInterface */
private $options;