Release v1.1.7, see ChangeLog for details.

This commit is contained in:
Mark Ellzey 2012-11-20 16:12:50 -05:00
parent c32c0ede63
commit 638fff7d1b
3 changed files with 8 additions and 3 deletions

View file

@ -3,7 +3,7 @@ project(reason)
set(PROJECT_MAJOR_VERSION 1)
set(PROJECT_MINOR_VERSION 1)
set(PROJECT_PATCH_VERSION 6)
set(PROJECT_PATCH_VERSION 7)
set (PROJECT_VERSION ${PROJECT_MAJOR_VERSION}.${PROJECT_MINOR_VERSION}.${PROJECT_PATCH_VERSION})
set (CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeModules)

View file

@ -1,3 +1,8 @@
v1.1.7
o NULL check for evhtp_kvs_for_each (37f3864 Mark Ellzey)
o Parse body as the query args if content-type is url-encoded. (ee25209 Mark Ellzey)
o Added a write hook. (c32c0ed Mark Ellzey)
v1.1.6
o Added __cplusplus into evthr (31e3973 Mark Ellzey)
o Use evhtp_hook_generic_cb function pointer prototype when setting a hook (59f01f3 Gian-Paolo Musumeci)

View file

@ -161,10 +161,10 @@ typedef void (*evhtp_ssl_scache_del)(evhtp_t * htp, unsigned char * sid, int sid
typedef evhtp_ssl_sess_t * (*evhtp_ssl_scache_get)(evhtp_connection_t * connection, unsigned char * sid, int sid_len);
typedef void * (*evhtp_ssl_scache_init)(evhtp_t *);
#define EVHTP_VERSION "1.1.6"
#define EVHTP_VERSION "1.1.7"
#define EVHTP_VERSION_MAJOR 1
#define EVHTP_VERSION_MINOR 1
#define EVHTP_VERSION_PATCH 5
#define EVHTP_VERSION_PATCH 7
#define evhtp_headers_iterator evhtp_kvs_iterator