From: Brian Aker Date: Tue, 13 Oct 2009 15:24:14 +0000 (-0700) Subject: Updated for release X-Git-Tag: 0.34~2 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=23291250bf481b50187bc77fdc5af50e4cd0b41c;p=awesomized%2Flibmemcached Updated for release --- diff --git a/ChangeLog b/ChangeLog index 38de7da0..050efc0a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +0.34 + * Added support for setting behavior flags on a connection pool. + * Don't increment server_failure_counter on normal disconnects. + * Added prototype for a callback based protocol parser (server side) + with examples so that you could let your own application speak the + memcached protocol * Updated memcapable to test ASCII protocol. * Changed behavior so that server can be removed at first sign of failure. * Added memcached_server_get_last_disconnect() call diff --git a/configure.ac b/configure.ac index 951edfbf..f1333afa 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ # the COPYING file in this directory for full text. AC_PREREQ(2.59) -AC_INIT([libmemcached],[0.33],[http://tangent.org/552/libmemcached.html]) +AC_INIT([libmemcached],[0.34],[http://tangent.org/552/libmemcached.html]) AC_CONFIG_SRCDIR([libmemcached/memcached.c]) AC_CONFIG_AUX_DIR(config) AM_CONFIG_HEADER([config.h]) diff --git a/libmemcached/memcached.h b/libmemcached/memcached.h index 08c66a2c..7c25fb3c 100644 --- a/libmemcached/memcached.h +++ b/libmemcached/memcached.h @@ -33,7 +33,7 @@ extern "C" { #endif #define MEMCACHED_VERSION_STRING_LENGTH 24 -#define LIBMEMCACHED_VERSION_STRING "0.33" +#define LIBMEMCACHED_VERSION_STRING "0.34" struct memcached_analysis_st { uint32_t average_item_size;