mirror of
https://github.com/facebook/zstd.git
synced 2025-03-06 16:56:49 +02:00
bumped version number
so that potential issue report do not confuse `dev` with latest release
This commit is contained in:
parent
4be9b4b9bb
commit
5120883a9c
@ -1,3 +1,10 @@
|
|||||||
|
v1.4.5
|
||||||
|
perf: Improved decompression speed, +10% on clang, +5% on gcc, by @terrelln
|
||||||
|
cli: new command : provide list of files to de/compress within a file with --filelist=FILE, by @AhmedAbdellah19
|
||||||
|
api: low latency blocks, new experimental parameter by @ephiepark
|
||||||
|
build: mingw cross-compilation from unix, by @Ericson2314
|
||||||
|
misc: bitflip analyzer tool, by @felixhandte
|
||||||
|
|
||||||
v1.4.4
|
v1.4.4
|
||||||
perf: Improved decompression speed, by > 10%, by @terrelln
|
perf: Improved decompression speed, by > 10%, by @terrelln
|
||||||
perf: Better compression speed when re-using a context, by @felixhandte
|
perf: Better compression speed when re-using a context, by @felixhandte
|
||||||
|
@ -72,7 +72,7 @@ extern "C" {
|
|||||||
/*------ Version ------*/
|
/*------ Version ------*/
|
||||||
#define ZSTD_VERSION_MAJOR 1
|
#define ZSTD_VERSION_MAJOR 1
|
||||||
#define ZSTD_VERSION_MINOR 4
|
#define ZSTD_VERSION_MINOR 4
|
||||||
#define ZSTD_VERSION_RELEASE 4
|
#define ZSTD_VERSION_RELEASE 5
|
||||||
|
|
||||||
#define ZSTD_VERSION_NUMBER (ZSTD_VERSION_MAJOR *100*100 + ZSTD_VERSION_MINOR *100 + ZSTD_VERSION_RELEASE)
|
#define ZSTD_VERSION_NUMBER (ZSTD_VERSION_MAJOR *100*100 + ZSTD_VERSION_MINOR *100 + ZSTD_VERSION_RELEASE)
|
||||||
ZSTDLIB_API unsigned ZSTD_versionNumber(void); /**< to check runtime library version */
|
ZSTDLIB_API unsigned ZSTD_versionNumber(void); /**< to check runtime library version */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user