From 495fee110ebb48a5eb63b75fd67e42b2955871e2 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Thu, 23 Mar 2023 19:38:00 -0700 Subject: [PATCH] v1.18 --- NEWS.md | 13 +++++++++++++ libdeflate.h | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 20841b81..54093e61 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,18 @@ # libdeflate release notes +## Version 1.18 + +* Fixed a bug where the build type didn't default to "Release" when using + CMake 3.10 or earlier. + +* Fixed a bug where some optimized code wasn't used when building with + Clang 15 or later (x86), or with Clang 16 or later (aarch64). + +* Fixed build errors with some architecture and compiler combos: + * aarch64 with Clang 16 + * armv6kz or armv7e-m with gcc + * armhf with gcc (on Debian only) + ## Version 1.17 (Apologies for another release so soon after v1.16, but the bug fix listed below diff --git a/libdeflate.h b/libdeflate.h index 5b90d874..433a284d 100644 --- a/libdeflate.h +++ b/libdeflate.h @@ -13,8 +13,8 @@ extern "C" { #endif #define LIBDEFLATE_VERSION_MAJOR 1 -#define LIBDEFLATE_VERSION_MINOR 17 -#define LIBDEFLATE_VERSION_STRING "1.17" +#define LIBDEFLATE_VERSION_MINOR 18 +#define LIBDEFLATE_VERSION_STRING "1.18" /* * Users of libdeflate.dll on Windows can define LIBDEFLATE_DLL to cause