mirror of
https://github.com/lz4/lz4.git
synced 2024-11-23 18:04:05 +08:00
updated NEWS and raised version number
to ensure `dev` version is not confused with release v1.9.4
This commit is contained in:
parent
5e70eaae78
commit
0e4b22ddc9
9
NEWS
9
NEWS
@ -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
|
v1.9.4
|
||||||
perf : faster decoding speed (~+20%) on aarch64 platforms
|
perf : faster decoding speed (~+20%) on aarch64 platforms
|
||||||
perf : faster decoding speed (~+70%) for -BD4 setting in CLI
|
perf : faster decoding speed (~+70%) for -BD4 setting in CLI
|
||||||
|
@ -130,7 +130,7 @@ extern "C" {
|
|||||||
/*------ Version ------*/
|
/*------ Version ------*/
|
||||||
#define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */
|
#define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */
|
||||||
#define LZ4_VERSION_MINOR 9 /* for new (non-breaking) interface capabilities */
|
#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)
|
#define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user