1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

Another version bump because 0.8.1 didn't get applied properly for some mysterious reason.

Sorry about that.

Changed name of "faster" parser to "javascript".
This commit is contained in:
Matt Ranney
2012-11-02 14:17:53 -07:00
parent de21203c51
commit f367b8a03c
3 changed files with 12 additions and 5 deletions

View File

@@ -1,6 +1,13 @@
Changelog
=========
## v0.8.2 - November 11, 2012
Another version bump because 0.8.1 didn't get applied properly for some mysterious reason.
Sorry about that.
Changed name of "faster" parser to "javascript".
## v0.8.1 - September 11, 2012
Important bug fix for null responses (Jerry Sievert)

View File

@@ -6,7 +6,7 @@ function Packet(type, size) {
this.size = +size;
}
exports.name = "faster";
exports.name = "javascript";
exports.debug_mode = false;
function ReplyParser(options) {
@@ -192,7 +192,7 @@ ReplyParser.prototype.execute = function (buffer) {
// check the state for what is the result of
// a -1, set it back up for a null reply
if (ret === undefined) {
ret = null;
ret = null;
}
this.send_reply(ret);

View File

@@ -1,7 +1,7 @@
{ "name" : "redis",
"version" : "0.8.1",
"description" : "Redis client library, battle-tested by Voxer",
"keywords" : [ "redis", "pub", "sub", "voxer", "database" ],
"version" : "0.8.2",
"description" : "Redis client library",
"keywords" : [ "redis", "database" ],
"author": "Matt Ranney <mjr@ranney.com>",
"main": "./index.js",
"scripts": {