updated NEWS and raised version number

to ensure `dev` version is not confused with release v1.9.4
This commit is contained in:
Yann Collet 2023-10-20 12:38:44 -07:00
parent 5e70eaae78
commit 0e4b22ddc9
2 changed files with 10 additions and 1 deletions

9
NEWS
View File

@ -1,3 +1,12 @@
v1.9.5 (in dev)
perf : Slightly faster (+5%) HC compression speed (levels 3-9)
lib : lz4frame states can now be reset and reused after a processing error (described by @QrczakMK)
cli : fix: refuse to compress directories
cli : fix dictionary compression benchmark on multiple files
build: cmake minimum version raised to 3.5
build: meson scripts are now hosted into `build/` directory
port : support for loongArch, risc-V, m68k and mips architectures
v1.9.4
perf : faster decoding speed (~+20%) on aarch64 platforms
perf : faster decoding speed (~+70%) for -BD4 setting in CLI

View File

@ -130,7 +130,7 @@ extern "C" {
/*------ Version ------*/
#define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */
#define LZ4_VERSION_MINOR 9 /* for new (non-breaking) interface capabilities */
#define LZ4_VERSION_RELEASE 4 /* for tweaks, bug-fixes, or development */
#define LZ4_VERSION_RELEASE 5 /* for tweaks, bug-fixes, or development */
#define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE)