diff options
author | Jan-Erik Rediger <janerik@fnordig.de> | 2015-09-16 12:25:02 +0200 |
---|---|---|
committer | Jan-Erik Rediger <janerik@fnordig.de> | 2015-09-16 12:25:02 +0200 |
commit | 010756025e8cefd1bc66c6d4ed3b1648ef6f1f95 (patch) | |
tree | 1421fb2488385bb3a49499a4e86f09126fa1d0eb | |
parent | 3d4b5c29ba3d12c7e73c976c464c787d021551a0 (diff) |
Release version 0.13.3
-rw-r--r-- | CHANGELOG.md | 10 | ||||
-rw-r--r-- | hiredis.h | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b2ca94f..a5015c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +### 0.13.3 (2015-09-16) + +* Revert "Clear `REDIS_CONNECTED` flag when connection is closed". +* Make tests pass on FreeBSD (Thanks, Giacomo Olgeni) + + +If the `REDIS_CONNECTED` flag is cleared, +the async onDisconnect callback function will never be called. +This causes problems as the disconnect is never reported back to the user. + ### 0.13.2 (2015-08-25) * Prevent crash on pending replies in async code (Thanks, @switch-st) @@ -41,7 +41,7 @@ #define HIREDIS_MAJOR 0 #define HIREDIS_MINOR 13 -#define HIREDIS_PATCH 2 +#define HIREDIS_PATCH 3 #define HIREDIS_SONAME 0.13 /* Connection type can be blocking or non-blocking and is set in the |