Skip to content

Commit 495fee1

Browse files
committed
v1.18
1 parent 736f40e commit 495fee1

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.18
4+
5+
* Fixed a bug where the build type didn't default to "Release" when using
6+
CMake 3.10 or earlier.
7+
8+
* Fixed a bug where some optimized code wasn't used when building with
9+
Clang 15 or later (x86), or with Clang 16 or later (aarch64).
10+
11+
* Fixed build errors with some architecture and compiler combos:
12+
* aarch64 with Clang 16
13+
* armv6kz or armv7e-m with gcc
14+
* armhf with gcc (on Debian only)
15+
316
## Version 1.17
417

518
(Apologies for another release so soon after v1.16, but the bug fix listed below

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 17
17-
#define LIBDEFLATE_VERSION_STRING "1.17"
16+
#define LIBDEFLATE_VERSION_MINOR 18
17+
#define LIBDEFLATE_VERSION_STRING "1.18"
1818

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

0 commit comments

Comments
 (0)