Skip to content

Commit

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

## Version 1.23

* Fixed bug introduced in 1.20 where incorrect checksums could be calculated if
libdeflate was compiled with clang at -O0 and run on a CPU supporting AVX512.

* Fixed bug introduced in 1.20 where incorrect checksums could be calculated in
rare cases on macOS computers that support AVX512 and are running an older
version of macOS that contains a bug that corrupts AVX512 registers. This
could occur only if code outside libdeflate enabled AVX512 in the thread.

* Fixed build error when using -mno-evex512 with clang 18+ or gcc 14+.

* Increased the minimum CMake version to 3.10.

* Further optimized the x86 CRC code.

## Version 1.22

* The CMake-based build system now implements a workaround for gcc being paired
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 22
#define LIBDEFLATE_VERSION_STRING "1.22"
#define LIBDEFLATE_VERSION_MINOR 23
#define LIBDEFLATE_VERSION_STRING "1.23"

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

0 comments on commit 7805198

Please sign in to comment.