mirror of
https://github.com/facebook/zstd.git
synced 2025-12-09 00:03:18 -05:00
bumped version number
and updated NEWS in anticipation for release
This commit is contained in:
parent
4946993f87
commit
7e00df4a49
14
NEWS
14
NEWS
@ -1,15 +1,25 @@
|
|||||||
v1.3.2
|
v1.3.2
|
||||||
new : long range mode, using --long command, by Stella Lau (@stellamplau)
|
new : long range mode, using --long command, by Stella Lau (@stellamplau)
|
||||||
license : changed /examples license to BSD + GPLv2
|
new : ability to generate and decode magicless frames (#591)
|
||||||
license : fix a few header files to reflect new license (#825)
|
changed : maximum nb of threads reduced to 200, to avoid address space exhaustion in 32-bits mode
|
||||||
fix : multi-threading compression works with custom allocators
|
fix : multi-threading compression works with custom allocators
|
||||||
fix : ZSTD_sizeof_CStream() was over-evaluating memory usage
|
fix : ZSTD_sizeof_CStream() was over-evaluating memory usage
|
||||||
fix : a rare compression bug when compression generates very large distances and bunch of other conditions (only possible at --ultra -22)
|
fix : a rare compression bug when compression generates very large distances and bunch of other conditions (only possible at --ultra -22)
|
||||||
fix : 32-bits build can now decode large offsets (levels 21+)
|
fix : 32-bits build can now decode large offsets (levels 21+)
|
||||||
|
cli : added LZ4 frame support by default, by Felix Handte (@felixhandte)
|
||||||
|
cli : improved --list output
|
||||||
cli : new : can split input file for dictionary training, using command -B#
|
cli : new : can split input file for dictionary training, using command -B#
|
||||||
|
cli : new : clean operation artefact on Ctrl-C interruption
|
||||||
cli : fix : do not change /dev/null permissions when using command -t with root access, reported by @mike155 (#851)
|
cli : fix : do not change /dev/null permissions when using command -t with root access, reported by @mike155 (#851)
|
||||||
|
cli : fix : write file size in header in multiple-files mode
|
||||||
|
api : added macro ZSTD_COMPRESSBOUND() for static allocation
|
||||||
|
api : experimental : new advanced decompression API
|
||||||
|
api : fix : sizeof_CCtx() used to over-estimate
|
||||||
build: fix : no-multithread variant compiles without pool.c dependency, reported by Mitchell Blank Jr (@mitchblank) (#819)
|
build: fix : no-multithread variant compiles without pool.c dependency, reported by Mitchell Blank Jr (@mitchblank) (#819)
|
||||||
build: better compatibility with reproducible builds, by Bernhard M. Wiedemann (@bmwiedemann) (#818)
|
build: better compatibility with reproducible builds, by Bernhard M. Wiedemann (@bmwiedemann) (#818)
|
||||||
|
example : added streaming_memory_usage
|
||||||
|
license : changed /examples license to BSD + GPLv2
|
||||||
|
license : fix a few header files to reflect new license (#825)
|
||||||
|
|
||||||
v1.3.1
|
v1.3.1
|
||||||
New license : BSD + GPLv2
|
New license : BSD + GPLv2
|
||||||
|
|||||||
@ -59,7 +59,7 @@ extern "C" {
|
|||||||
/*------ Version ------*/
|
/*------ Version ------*/
|
||||||
#define ZSTD_VERSION_MAJOR 1
|
#define ZSTD_VERSION_MAJOR 1
|
||||||
#define ZSTD_VERSION_MINOR 3
|
#define ZSTD_VERSION_MINOR 3
|
||||||
#define ZSTD_VERSION_RELEASE 1
|
#define ZSTD_VERSION_RELEASE 2
|
||||||
|
|
||||||
#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); /**< useful to check dll version */
|
ZSTDLIB_API unsigned ZSTD_versionNumber(void); /**< useful to check dll version */
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user