This commit is contained in:
Eric Biggers 2021-07-15 09:29:19 -05:00
parent 8efdabddae
commit 047aa84e01
2 changed files with 16 additions and 2 deletions

14
NEWS.md
View File

@ -1,5 +1,19 @@
# libdeflate release notes
## Version 1.8
* Added `-t` (test) option to `libdeflate-gunzip`.
* Unaligned access optimizations are now enabled on WebAssembly builds.
* Fixed a build error when building with the Intel C Compiler (ICC).
* Fixed a build error when building with uClibc.
* libdeflate's CI system has switched from Travis CI to GitHub Actions.
* Made some improvements to test scripts.
## Version 1.7
* Added support for compression level 0, "no compression".

View File

@ -10,8 +10,8 @@ extern "C" {
#endif
#define LIBDEFLATE_VERSION_MAJOR 1
#define LIBDEFLATE_VERSION_MINOR 7
#define LIBDEFLATE_VERSION_STRING "1.7"
#define LIBDEFLATE_VERSION_MINOR 8
#define LIBDEFLATE_VERSION_STRING "1.8"
#include <stddef.h>
#include <stdint.h>