Skip to content

Commit

Permalink
v1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
ebiggers committed Dec 5, 2022
1 parent f7ba429 commit 0201338
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# libdeflate release notes

## Version 1.15

* libdeflate now uses CMake instead of a plain Makefile.

* Improved MSVC support. Enabled most architecture-specific code with MSVC,
fixed building with clang in MSVC compatibility mode, and other improvements.

* When libdeflate is built with MinGW, the static library and import library are
now named using the MinGW convention (`*.a` and `*.dll.a`) instead of the
Visual Studio convention. This affects the official Windows binaries.

## Version 1.14

Significantly improved decompression performance on all platforms. Examples
Expand Down
4 changes: 2 additions & 2 deletions libdeflate.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ extern "C" {
#endif

#define LIBDEFLATE_VERSION_MAJOR 1
#define LIBDEFLATE_VERSION_MINOR 14
#define LIBDEFLATE_VERSION_STRING "1.14"
#define LIBDEFLATE_VERSION_MINOR 15
#define LIBDEFLATE_VERSION_STRING "1.15"

/*
* Users of libdeflate.dll on Windows can define LIBDEFLATE_DLL to cause
Expand Down

0 comments on commit 0201338

Please sign in to comment.