File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
# libdeflate release notes
2
2
3
+ ## Version 1.15
4
+
5
+ * libdeflate now uses CMake instead of a plain Makefile.
6
+
7
+ * Improved MSVC support. Enabled most architecture-specific code with MSVC,
8
+ fixed building with clang in MSVC compatibility mode, and other improvements.
9
+
10
+ * When libdeflate is built with MinGW, the static library and import library are
11
+ now named using the MinGW convention (` *.a ` and ` *.dll.a ` ) instead of the
12
+ Visual Studio convention. This affects the official Windows binaries.
13
+
3
14
## Version 1.14
4
15
5
16
Significantly improved decompression performance on all platforms. Examples
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 14
17
- #define LIBDEFLATE_VERSION_STRING "1.14 "
16
+ #define LIBDEFLATE_VERSION_MINOR 15
17
+ #define LIBDEFLATE_VERSION_STRING "1.15 "
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