This commit is contained in:
Eric Biggers 2019-12-28 13:20:50 -06:00
parent ecffc1f5fb
commit 3107ae1f7e
2 changed files with 7 additions and 2 deletions

5
NEWS
View File

@ -1,3 +1,8 @@
Version 1.5:
Fixed up stdcall support on 32-bit Windows: the functions are
now exported using both suffixed and non-suffixed names, and
fixed libdeflate.h to be MSVC-compatible again.
Version 1.4:
The 32-bit Windows build of libdeflate now uses the "stdcall"
calling convention instead of "cdecl". If you're calling

View File

@ -10,8 +10,8 @@ extern "C" {
#endif
#define LIBDEFLATE_VERSION_MAJOR 1
#define LIBDEFLATE_VERSION_MINOR 4
#define LIBDEFLATE_VERSION_STRING "1.4"
#define LIBDEFLATE_VERSION_MINOR 5
#define LIBDEFLATE_VERSION_STRING "1.5"
#include <stddef.h>
#include <stdint.h>