Ver Fonte

Diverging from the v0.8 branch (current stable).

This commit marks the start of works for the next major release of
Predis which will bring various breaking changes needed to polish the
internal design making the library even more flexible to use or extend
and, more importantly, almost stable in terms of API.

The Redis commands API exposed by Predis\Client is not going to change
much if not at all which is a good news. The most immediate changes
affecting developers will involve the renaming of a few namespaces and
classes, the removal of some previously deprecated classes and methods
and some tweaks to the current abstractions.

Right now the plan is to have a fast paced development to release this
version as soon as possible, ideally a few weeks later than Redis 2.8,
then wait to see the final definition of redis-cluster so that we can
tweak our code if needed and finally hit the v1.0.0 milestone with as
few changes as possible. Furthermore, v1.x will most likely be the
last version of Predis supporting PHP 5.3 as we will start migrating
to PHP 5.4 (or even 5.5) with v2.x, which is not going to happen soon
anyway.
Daniele Alessandri há 11 anos atrás
pai
commit
153758019c
3 ficheiros alterados com 3 adições e 3 exclusões
  1. 1 1
      VERSION
  2. 1 1
      lib/Predis/Client.php
  3. 1 1
      package.ini

+ 1 - 1
VERSION

@@ -1 +1 @@
-0.8.5-dev
+0.9.0-dev

+ 1 - 1
lib/Predis/Client.php

@@ -31,7 +31,7 @@ use Predis\Transaction\MultiExecContext;
  */
 class Client implements ClientInterface
 {
-    const VERSION = '0.8.5-dev';
+    const VERSION = '0.9.0-dev';
 
     private $options;
     private $profile;

+ 1 - 1
package.ini

@@ -10,7 +10,7 @@ name        = "Predis"
 desc        = "Flexible and feature-complete PHP client library for Redis"
 homepage    = "http://github.com/nrk/predis"
 license     = "MIT"
-version     = "0.8.5"
+version     = "0.9.0"
 stability   = "devel"
 channel     = "pear.nrk.io"