Skip to content

Commit

Permalink
Bump default server profile to Redis 3.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
nrk committed May 25, 2016
1 parent 0dff761 commit 9398a79
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,8 @@
v1.1.0 (2016-0x-xx)
================================================================================

- Bumped the default server profile used by the client to Redis 3.2.

- Responses to the following commands are not casted into booleans anymore, the
original integer value is returned: `SETNX`, `MSETNX`, `SMOVE`, `SISMEMBER`,
`HSET`, `HSETNX`, `HEXISTS`, `PFADD`, `EXISTS`, `MOVE`, `PERSIST`, `EXPIRE`,
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Expand Up @@ -38,7 +38,7 @@

<php>
<!-- Redis -->
<const name="REDIS_SERVER_VERSION" value="2.8" />
<const name="REDIS_SERVER_VERSION" value="3.2" />
<const name="REDIS_SERVER_HOST" value="127.0.0.1" />
<const name="REDIS_SERVER_PORT" value="6379" />
<const name="REDIS_SERVER_DBNUM" value="15" />
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.travisci
Expand Up @@ -42,7 +42,7 @@

<php>
<!-- Redis -->
<const name="REDIS_SERVER_VERSION" value="2.8" />
<const name="REDIS_SERVER_VERSION" value="3.2" />
<const name="REDIS_SERVER_HOST" value="127.0.0.1" />
<const name="REDIS_SERVER_PORT" value="6379" />
<const name="REDIS_SERVER_DBNUM" value="15" />
Expand Down
2 changes: 1 addition & 1 deletion src/Profile/Factory.php
Expand Up @@ -29,7 +29,7 @@ final class Factory
'3.0' => 'Predis\Profile\RedisVersion300',
'3.2' => 'Predis\Profile\RedisVersion320',
'dev' => 'Predis\Profile\RedisUnstable',
'default' => 'Predis\Profile\RedisVersion300',
'default' => 'Predis\Profile\RedisVersion320',
);

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/Predis/Profile/FactoryTest.php
Expand Up @@ -18,7 +18,7 @@
*/
class FactoryTest extends PredisTestCase
{
const DEFAULT_PROFILE_VERSION = '3.0';
const DEFAULT_PROFILE_VERSION = '3.2';
const DEVELOPMENT_PROFILE_VERSION = '3.2';

/**
Expand Down

0 comments on commit 9398a79

Please sign in to comment.