summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-03-22 17:08:29 +0100
committerantirez <antirez@gmail.com>2010-03-22 17:08:29 +0100
commita9c723ea1e2213f98eb46a4322d4e31af3d051c2 (patch)
tree7fa371ae2ed4a9ea40af06cf22f47c02e049c1ec
parentb3f83f127273da21506f697e256ae010587b10f1 (diff)
downloadredis-a9c723ea1e2213f98eb46a4322d4e31af3d051c2.tar.gz
Redis master version is now 1.3.7v1.3.7
-rw-r--r--Changelog8
-rw-r--r--redis.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/Changelog b/Changelog
index 09b80b715..13871ebfc 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,11 @@
+2010-03-19 support for include directive in config parser
+2010-03-19 Removed a stupid overriding of config values due to a wrong cut&paste
+2010-03-19 VM hash type swappability implemented. Handling of failed pthread_create() call.
+2010-03-18 increment server.dirty on HDEL
+2010-03-18 Redis 1.3.6
+2010-03-18 test-redis.tcl dataset digest function Hash support
+2010-03-18 zipmap fix for large values
+2010-03-18 Optimization fixed and re-activated
2010-03-18 reverted an optimization that makes Redis not stable
2010-03-18 Fixed redis-cli auth code
2010-03-17 HDEL fix, an optimization for comparison of objects in hash table lookups when they are integer encoding
diff --git a/redis.c b/redis.c
index ab0fc659a..1d70dbe6a 100644
--- a/redis.c
+++ b/redis.c
@@ -27,7 +27,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#define REDIS_VERSION "1.3.6"
+#define REDIS_VERSION "1.3.7"
#include "fmacros.h"
#include "config.h"