Skip to content

Commit 9be1c54

Browse files
committed
v1.21
1 parent 57fc338 commit 9be1c54

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

NEWS.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# libdeflate release notes
22

3+
## Version 1.21
4+
5+
* Fixed build error on x86 with gcc 8.1 and gcc 8.2.
6+
7+
* Fixed build error on x86 when gcc 11 is paired with a binutils version that
8+
doesn't support AVX-VNNI, e.g. as it is on RHEL 9.
9+
10+
* Fixed build error on arm64 with gcc 6.
11+
12+
* Fixed build error on arm64 with gcc 13.1 and later with some -mcpu options.
13+
14+
* Enabled detection of dotprod support in Windows ARM64 builds.
15+
316
## Version 1.20
417

518
* Improved CRC-32 performance on recent x86 CPUs by adding

libdeflate.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ extern "C" {
1313
#endif
1414

1515
#define LIBDEFLATE_VERSION_MAJOR 1
16-
#define LIBDEFLATE_VERSION_MINOR 20
17-
#define LIBDEFLATE_VERSION_STRING "1.20"
16+
#define LIBDEFLATE_VERSION_MINOR 21
17+
#define LIBDEFLATE_VERSION_STRING "1.21"
1818

1919
/*
2020
* Users of libdeflate.dll on Windows can define LIBDEFLATE_DLL to cause

0 commit comments

Comments
 (0)