Browse Source

Apparently the next major version or Redis will be 2.8.

Daniele Alessandri 13 years ago
parent
commit
a7c906ab4c

+ 1 - 1
lib/Predis/Profiles/ServerVersionNext.php

@@ -23,7 +23,7 @@ class ServerVersionNext extends ServerVersion26
      */
     public function getVersion()
     {
-        return '3.0';
+        return '2.8';
     }
 
     /**

+ 1 - 1
tests/Predis/Profiles/ServerProfileTest.php

@@ -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

+ 1 - 1
tests/Predis/Profiles/ServerVersionNextTest.php

@@ -29,7 +29,7 @@ class ServerVersionNextTest extends ServerVersionTestCase
      */
     public function getExpectedVersion()
     {
-        return '3.0';
+        return '2.8';
     }
 
     /**