From 770edc179831f066557594772a95c9083bef9ee4 Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Fri, 23 Apr 2010 10:57:18 -0700 Subject: [PATCH] Store .40 release information. --- ChangeLog | 3 +++ configure.ac | 4 ++-- libmemcached/protocol/ascii_handler.c | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index f1d345a0..d61f5997 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ +0.40 Thu Apr 22 19:01:25 PDT 2010 * Placed retry logic in for busted resolvers * Add an ignore for SIGPIPE to solve OSX issues. + * A couple of fixed for memcached_light server. + * Updated to debug mode to track io_wait 0.39 Tue Apr 6 12:35:13 PDT 2010 * Add support for prefix keys to binary protocol. diff --git a/configure.ac b/configure.ac index b6d8b2f3..19bc4bb5 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ # the COPYING file in this directory for full text. AC_PREREQ(2.59) -AC_INIT([libmemcached],[0.39],[http://libmemcached.org/]) +AC_INIT([libmemcached],[0.40],[http://libmemcached.org/]) AC_CONFIG_SRCDIR([libmemcached/memcached.c]) AC_CONFIG_AUX_DIR(config) AM_CONFIG_HEADER([config.h]) @@ -16,7 +16,7 @@ AC_CONFIG_MACRO_DIR([m4]) PANDORA_CANONICAL_TARGET #shared library versioning -MEMCACHED_LIBRARY_VERSION=4:0:0 +MEMCACHED_LIBRARY_VERSION=5:0:0 # | | | # +------+ | +---+ # | | | diff --git a/libmemcached/protocol/ascii_handler.c b/libmemcached/protocol/ascii_handler.c index c2fd6870..6f5102b0 100644 --- a/libmemcached/protocol/ascii_handler.c +++ b/libmemcached/protocol/ascii_handler.c @@ -386,7 +386,7 @@ static void process_delete(memcached_protocol_client_st *client, else { char msg[80]; - snprintf(msg, sizeof(msg), "SERVER_ERROR: delete failed %u\r\n",(int)rval); + snprintf(msg, sizeof(msg), "SERVER_ERROR: delete failed %u\r\n",(uint32_t)rval); spool_string(client, msg); } } -- 2.30.2