Skip to content

Commit

Permalink
Prep release v1.0.0, see ChangeLog for details.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Ellzey committed Aug 15, 2012
1 parent 7783ca2 commit 4bbda88
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
@@ -1,3 +1,10 @@
v1.0.0
o Added some function documentation. (adc3ac6 Mark Ellzey)
o Check for null deref on request check. (a722fc4 Mark Ellzey)
o Fix for state set override for headers. (87fb859 Mark Ellzey)
o No need for null checks before free(). (7783ca2 Mark Ellzey)
o Bumping this up to 1.0.0 since it's been in production for a while.

v0.4.17
o Added cmake option for disabling regex. (5ab2e4b Mark Ellzey)
o Cleanup compiler warnings. (770a344 Mark Ellzey)
Expand Down
8 changes: 4 additions & 4 deletions evhtp.h
Expand Up @@ -155,10 +155,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 "0.4.17"
#define EVHTP_VERSION_MAJOR 0
#define EVHTP_VERSION_MINOR 4
#define EVHTP_VERSION_PATCH 17
#define EVHTP_VERSION "1.0.0"
#define EVHTP_VERSION_MAJOR 1
#define EVHTP_VERSION_MINOR 0
#define EVHTP_VERSION_PATCH 0

#define evhtp_headers_iterator evhtp_kvs_iterator

Expand Down

0 comments on commit 4bbda88

Please sign in to comment.