From 020133854ff73b8506fe59f92a9b5b622d360716 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 4 Dec 2022 20:27:20 -0800 Subject: [PATCH] v1.15 --- NEWS.md | 11 +++++++++++ libdeflate.h | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 65449eb6..497ae219 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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 diff --git a/libdeflate.h b/libdeflate.h index 51b07095..f2608759 100644 --- a/libdeflate.h +++ b/libdeflate.h @@ -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