소스 검색

Merge remote-tracking branch 'thbourlove/v0.8' into v0.8

Daniele Alessandri 11 년 전
부모
커밋
c94e5d3a10
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      lib/Predis/Profile/ServerProfile.php
  2. 1 1
      tests/Predis/Profile/ServerProfileTest.php

+ 1 - 1
lib/Predis/Profile/ServerProfile.php

@@ -78,7 +78,7 @@ abstract class ServerProfile implements ServerProfileInterface, CommandProcessin
             '2.4'     => 'Predis\Profile\ServerVersion24',
             '2.6'     => 'Predis\Profile\ServerVersion26',
             '2.8'     => 'Predis\Profile\ServerVersion28',
-            'default' => 'Predis\Profile\ServerVersion26',
+            'default' => 'Predis\Profile\ServerVersion28',
             'dev'     => 'Predis\Profile\ServerVersionNext',
         );
     }

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

@@ -19,7 +19,7 @@ use Predis\Command\Processor\ProcessorChain;
  */
 class ServerProfileTest extends PredisTestCase
 {
-    const DEFAULT_PROFILE_VERSION = '2.6';
+    const DEFAULT_PROFILE_VERSION = '2.8';
     const DEVELOPMENT_PROFILE_VERSION = '3.0';
 
     /**