File tree 2 files changed +21
-2
lines changed
2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 1
1
# libdeflate release notes
2
2
3
+ ## Version 1.16
4
+
5
+ * Improved the compression ratio at levels 10-12 slightly, mainly levels 11-12.
6
+ Some inputs (such as certain PNG files) see much improved compression ratios.
7
+ As a trade-off, compressing at levels 11-12 is now about 5-20% slower.
8
+
9
+ * For consistency with zlib, the decompressor now returns an error on some
10
+ invalid inputs that were accepted before.
11
+
12
+ * Fixed a build error on arm64 with gcc with certain target CPUs. (Fixes v1.12)
13
+
14
+ * Fixed a build error on arm32 with gcc 10.1-10.3 and 11.1-11.2. (Fixes v1.15)
15
+
16
+ * Fixed a build error on arm32 with gcc in soft float mode. (Fixes v1.15)
17
+
18
+ * Fixed a build error in programs/gzip.c with uClibc. (Fixes v1.15)
19
+
20
+ * Fixed the install target on Windows. (Fixes v1.15)
21
+
3
22
## Version 1.15
4
23
5
24
* libdeflate now uses CMake instead of a plain Makefile.
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ extern "C" {
13
13
#endif
14
14
15
15
#define LIBDEFLATE_VERSION_MAJOR 1
16
- #define LIBDEFLATE_VERSION_MINOR 15
17
- #define LIBDEFLATE_VERSION_STRING "1.15 "
16
+ #define LIBDEFLATE_VERSION_MINOR 16
17
+ #define LIBDEFLATE_VERSION_STRING "1.16 "
18
18
19
19
/*
20
20
* Users of libdeflate.dll on Windows can define LIBDEFLATE_DLL to cause
You can’t perform that action at this time.
0 commit comments