Browse Source

Back to development.

The master branch now hosts the development of Predis v2.0.0-dev.
Daniele Alessandri 8 years ago
parent
commit
3dccd6bf87
4 changed files with 9 additions and 4 deletions
  1. 1 1
      VERSION
  2. 5 0
      composer.json
  3. 2 2
      package.ini
  4. 1 1
      src/Client.php

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.1.0
+2.0.0-dev

+ 5 - 0
composer.json

@@ -27,5 +27,10 @@
     },
     "autoload": {
         "psr-4": {"Predis\\": "src/"}
+    },
+    "extra": {
+        "branch-alias": {
+            "dev-master": "2.0-dev"
+        }
     }
 }

+ 2 - 2
package.ini

@@ -10,8 +10,8 @@ name        = "Predis"
 desc        = "Flexible and feature-complete Redis client for PHP and HHVM"
 homepage    = "http://github.com/nrk/predis"
 license     = "MIT"
-version     = "1.1.0"
-stability   = "stable"
+version     = "2.0.0"
+stability   = "devel"
 channel     = "pear.nrk.io"
 
 author      = "Daniele Alessandri \"nrk\" <suppakilla@gmail.com>"

+ 1 - 1
src/Client.php

@@ -40,7 +40,7 @@ use Predis\Transaction\MultiExec as MultiExecTransaction;
  */
 class Client implements ClientInterface, \IteratorAggregate
 {
-    const VERSION = '1.1.0';
+    const VERSION = '2.0.0-dev';
 
     protected $connection;
     protected $options;