From 047aa84e01b38d82f3612810e357bd40f14a3d39 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Thu, 15 Jul 2021 09:29:19 -0500 Subject: [PATCH] v1.8 --- NEWS.md | 14 ++++++++++++++ libdeflate.h | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 6030f641..207c1bd9 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,19 @@ # libdeflate release notes +## Version 1.8 + +* Added `-t` (test) option to `libdeflate-gunzip`. + +* Unaligned access optimizations are now enabled on WebAssembly builds. + +* Fixed a build error when building with the Intel C Compiler (ICC). + +* Fixed a build error when building with uClibc. + +* libdeflate's CI system has switched from Travis CI to GitHub Actions. + +* Made some improvements to test scripts. + ## Version 1.7 * Added support for compression level 0, "no compression". diff --git a/libdeflate.h b/libdeflate.h index cbcda042..2f305ba2 100644 --- a/libdeflate.h +++ b/libdeflate.h @@ -10,8 +10,8 @@ extern "C" { #endif #define LIBDEFLATE_VERSION_MAJOR 1 -#define LIBDEFLATE_VERSION_MINOR 7 -#define LIBDEFLATE_VERSION_STRING "1.7" +#define LIBDEFLATE_VERSION_MINOR 8 +#define LIBDEFLATE_VERSION_STRING "1.8" #include #include