version is now 1.1.94

This commit is contained in:
antirez
2009-12-23 11:01:31 -05:00
parent 2c14807b2d
commit 56c2735d89
2 changed files with 5 additions and 6 deletions

View File

@ -27,7 +27,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#define REDIS_VERSION "1.1.93"
#define REDIS_VERSION "1.1.94"
#include "fmacros.h"
#include "config.h"
@ -1082,7 +1082,6 @@ static void createSharedObjects(void) {
shared.nullbulk = createObject(REDIS_STRING,sdsnew("$-1\r\n"));
shared.nullmultibulk = createObject(REDIS_STRING,sdsnew("*-1\r\n"));
shared.emptymultibulk = createObject(REDIS_STRING,sdsnew("*0\r\n"));
/* no such key */
shared.pong = createObject(REDIS_STRING,sdsnew("+PONG\r\n"));
shared.wrongtypeerr = createObject(REDIS_STRING,sdsnew(
"-ERR Operation against a key holding the wrong kind of value\r\n"));