Skip to content

Commit

Permalink
v1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ebiggers committed Dec 27, 2019
1 parent 5f38309 commit 91e972e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
Version 1.4:
The 32-bit Windows build of libdeflate now uses the "stdcall"
calling convention instead of "cdecl". If you're calling
libdeflate.dll directly from C or C++, you'll need to recompile
your code. If you're calling it from another language, or
calling it indirectly using LoadLibrary(), you'll need to update
your code to use the stdcall calling convention.

The Makefile now supports building libdeflate as a shared
library (.dylib) on macOS.

Fixed a bug where support for certain optimizations and optional
features (file access hints and more precise timestamps) was
incorrectly omitted when libdeflate was compiled with -Werror.

Added 'make check' target to the Makefile.

Added CI configuration files.

Version 1.3:
`make install` now supports customizing the directories into
which binaries, headers, and libraries are installed.
Expand Down
4 changes: 2 additions & 2 deletions libdeflate.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ extern "C" {
#endif

#define LIBDEFLATE_VERSION_MAJOR 1
#define LIBDEFLATE_VERSION_MINOR 3
#define LIBDEFLATE_VERSION_STRING "1.3"
#define LIBDEFLATE_VERSION_MINOR 4
#define LIBDEFLATE_VERSION_STRING "1.4"

#include <stddef.h>
#include <stdint.h>
Expand Down

0 comments on commit 91e972e

Please sign in to comment.