Make 2.6 the default server profile.

This commit is contained in:
Daniele Alessandri
2012-03-31 11:39:42 +02:00
parent 7c393cbc09
commit 92697aa075
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ abstract class ServerProfile implements ServerProfileInterface, CommandProcessin
'2.2' => 'Predis\Profile\ServerVersion22',
'2.4' => 'Predis\Profile\ServerVersion24',
'2.6' => 'Predis\Profile\ServerVersion26',
'default' => 'Predis\Profile\ServerVersion24',
'default' => 'Predis\Profile\ServerVersion26',
'dev' => 'Predis\Profile\ServerVersionNext',
);
}
+1 -1
View File
@@ -19,7 +19,7 @@ use Predis\Command\Processor\ProcessorChain;
*/
class ServerProfileTest extends StandardTestCase
{
const DEFAULT_PROFILE_VERSION = '2.4';
const DEFAULT_PROFILE_VERSION = '2.6';
const DEVELOPMENT_PROFILE_VERSION = '2.8';
/**