From e398ff977e4b145dcd1f39035be5bd609b652ba3 Mon Sep 17 00:00:00 2001 From: Daniele Alessandri Date: Sun, 20 Mar 2011 16:09:31 +0100 Subject: [PATCH] Switch to Redis 2.2 as the default server profile. --- CHANGELOG | 3 +++ lib/Predis.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 0e842291..c33bb392 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,7 @@ v0.6.6 (2011-xx-xx) + * Switched to Redis 2.2 as the default server profile (there are no changes + that would break compatibility with previous releases). + * Added a VERSION constant to Predis\Client. * Some performance improvements for multibulk replies (parsing them is about diff --git a/lib/Predis.php b/lib/Predis.php index 9e285740..65896f8d 100644 --- a/lib/Predis.php +++ b/lib/Predis.php @@ -1620,7 +1620,7 @@ abstract class RedisServerProfile { '1.2' => '\Predis\RedisServer_v1_2', '2.0' => '\Predis\RedisServer_v2_0', '2.2' => '\Predis\RedisServer_v2_2', - 'default' => '\Predis\RedisServer_v2_0', + 'default' => '\Predis\RedisServer_v2_2', 'dev' => '\Predis\RedisServer_vNext', ); }