aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-08-23 20:13:35 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-08-23 20:13:35 +0000
commitf588bc469e24d8634908e78c3dd84dfbc2c839d3 (patch)
tree7095ce3daa3b63000bc3533dc75d5e0c10ee312a
parentf143bdcad91a1141ea6f7f771021724e38691fee (diff)
downloadlibmicrohttpd-f588bc469e24d8634908e78c3dd84dfbc2c839d3.tar.gz
libmicrohttpd-f588bc469e24d8634908e78c3dd84dfbc2c839d3.zip
Bumped MHD_VERSION and updated ChangeLog.
-rw-r--r--ChangeLog14
-rw-r--r--src/include/microhttpd.h2
2 files changed, 15 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 78b2acd3..b23667c2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
1Tue Aug 23 22:54:07 MSK 2016
2 Internal refactoring: W32 compatibility layer was finally
3 replaced with several specialized abstraction layers for
4 sockets, control pipes (inter-thread communication) and
5 generic functions. Now all major platform functions
6 (including threads and mutex) are implemented in thin
7 abstraction layers.
8 Improved performance on W32 due to eliminating
9 translation of error to POSIX codes and using W32 codes
10 directly (through macros).
11 Improved error reporting on all platforms.
12 Improved error handling and reporting on Darwin.
13 Minor fixes. -EG
14
1Tue Aug 16 15:14:30 MSK 2016 15Tue Aug 16 15:14:30 MSK 2016
2 Minor improvement for monotonic clock. 16 Minor improvement for monotonic clock.
3 Minor configure fix for non-bash shells. -EG 17 Minor configure fix for non-bash shells. -EG
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 17828202..e44bb704 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -126,7 +126,7 @@ typedef intptr_t ssize_t;
126 * Current version of the library. 126 * Current version of the library.
127 * 0x01093001 = 1.9.30-1. 127 * 0x01093001 = 1.9.30-1.
128 */ 128 */
129#define MHD_VERSION 0x00095005 129#define MHD_VERSION 0x00095008
130 130
131/** 131/**
132 * MHD-internal return code for "YES". 132 * MHD-internal return code for "YES".