Apparently the next major version or Redis will be 2.8.

This commit is contained in:
Daniele Alessandri
2012-03-31 10:43:50 +02:00
parent 7675bb040a
commit a7c906ab4c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ class ServerVersionNext extends ServerVersion26
*/
public function getVersion()
{
return '3.0';
return '2.8';
}
/**
+1 -1
View File
@@ -20,7 +20,7 @@ use Predis\Commands\Processors\ProcessorChain;
class ServerProfileTest extends StandardTestCase
{
const DEFAULT_PROFILE_VERSION = '2.4';
const DEVELOPMENT_PROFILE_VERSION = '3.0';
const DEVELOPMENT_PROFILE_VERSION = '2.8';
/**
* @group disconnected
@@ -29,7 +29,7 @@ class ServerVersionNextTest extends ServerVersionTestCase
*/
public function getExpectedVersion()
{
return '3.0';
return '2.8';
}
/**