From 8342e600c2ddd0ed0a5be215bbd759d7d1990ec8 Mon Sep 17 00:00:00 2001 From: Nathan French Date: Mon, 24 Jul 2017 10:16:41 -0700 Subject: [PATCH] release 1.3.12-pre3 --- ChangeLog | 11 +++++++++++ evhtp.h | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 43be2b6..2484c21 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +v1.3.12-pre3 + o use PROJECT_BINARY_DIR for sys/ compat headers (012341c Nathan French) + o return int for htp__path_new_ (bf59eb1 Nathan French) + o more return normalization (91008a6 Nathan French) + o allocation functions set *out to NULL (0305c10 Nathan French) + o do not return on error from requie_uri (ddc2ce6 Nathan French) + o added user-defined custom memory functions (73b54c6 Nathan French) + o for some reason, htparser_init was being called manually with type_request?? (a153e5f Nathan French) + o Add htp__strndup_ memfn wrapper (763168c Nathan French) + o add a callback member in evhtp_ssl_cfg_t for customized decrypt privfile. fixes #16 (b3a4d42 h00360646) + v1.2.12-pre2 o Internalize some structs / deprecate evhtp_set_hook() (50ab327 Nathan French) o remove cruft (1b1a037 Nathan French) diff --git a/evhtp.h b/evhtp.h index cc71e13..835164b 100644 --- a/evhtp.h +++ b/evhtp.h @@ -202,10 +202,10 @@ typedef evhtp_ssl_sess_t * (* evhtp_ssl_scache_get)(evhtp_connection_t * connect typedef void * (* evhtp_ssl_scache_init)(evhtp_t *); #endif -#define EVHTP_VERSION "1.2.11" +#define EVHTP_VERSION "1.2.12-pre3" #define EVHTP_VERSION_MAJOR 1 #define EVHTP_VERSION_MINOR 2 -#define EVHTP_VERSION_PATCH 11 +#define EVHTP_VERSION_PATCH 12 #define evhtp_headers_iterator evhtp_kvs_iterator