Skip to content

Commit 0201338

Browse files
committed
v1.15
1 parent f7ba429 commit 0201338

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

NEWS.md

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

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+
314
## Version 1.14
415

516
Significantly improved decompression performance on all platforms. Examples

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 14
17-
#define LIBDEFLATE_VERSION_STRING "1.14"
16+
#define LIBDEFLATE_VERSION_MINOR 15
17+
#define LIBDEFLATE_VERSION_STRING "1.15"
1818

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

0 commit comments

Comments
 (0)