Yann Collet | 8b66953 | 2017-04-27 12:50:20 -0700 | [diff] [blame] | 1 | v1.2.0 |
Yann Collet | 5a80445 | 2017-04-27 12:49:22 -0700 | [diff] [blame] | 2 | cli : changed : Multithreading enabled by default (use target zstd-nomt or HAVE_THREAD=0 to disable) |
| 3 | cli : new : command -T0 means "detect and use nb of cores", by Sean Purcell |
| 4 | cli : new : zstdmt symlink hardwired to `zstd -T0` |
Yann Collet | 7bd68e1 | 2017-04-28 08:54:13 -0700 | [diff] [blame] | 5 | cli : new : command --threads=# (#671) |
Yann Collet | 7aada3c | 2017-05-02 12:14:12 -0700 | [diff] [blame] | 6 | cli : changed : cover dictionary builder by default, for improved quality, by Nick Terrell |
| 7 | cli : new : commands --train-cover and --train-legacy, to select dictionary algorithm and parameters |
Yann Collet | c08e568 | 2017-05-03 14:32:33 -0700 | [diff] [blame] | 8 | cli : experimental targets `zstd4` and `xzstd4`, with support for lz4 format, by Sean Purcell |
Yann Collet | 5a80445 | 2017-04-27 12:49:22 -0700 | [diff] [blame] | 9 | cli : fix : does not output compressed data on console |
| 10 | cli : fix : ignore symbolic links unless --force specified, |
| 11 | API : breaking change : ZSTD_createCDict_advanced(), only use compressionParameters as argument |
Yann Collet | 68a7d3d | 2017-04-28 12:46:48 -0700 | [diff] [blame] | 12 | API : added : prototypes ZSTD_*_usingCDict_advanced(), for direct control over frameParameters. |
Yann Collet | 5a80445 | 2017-04-27 12:49:22 -0700 | [diff] [blame] | 13 | API : improved: ZSTDMT_compressCCtx() reduced memory usage |
| 14 | API : fix : ZSTDMT_compressCCtx() now provides srcSize in header (#634) |
| 15 | API : fix : src size stored in frame header is controlled at end of frame |
Yann Collet | 7aada3c | 2017-05-02 12:14:12 -0700 | [diff] [blame] | 16 | API : fix : enforced consistent rules for pledgedSrcSize==0 (#641) |
| 17 | API : fix : error code "GENERIC" replaced by "dstSizeTooSmall" when appropriate |
Yann Collet | f3dfcdc | 2017-03-21 12:18:28 -0700 | [diff] [blame] | 18 | build: improved cmake script, by @Majlen |
Yann Collet | 5a80445 | 2017-04-27 12:49:22 -0700 | [diff] [blame] | 19 | build: enabled Multi-threading support for *BSD, by Baptiste Daroussin |
| 20 | tools: updated Paramgrill. Command -O# provides best parameters for sample and speed target. |
| 21 | new : contrib/linux-kernel version, by Nick Terrell |
Yann Collet | f3dfcdc | 2017-03-21 12:18:28 -0700 | [diff] [blame] | 22 | |
Yann Collet | 58af614 | 2017-02-13 18:32:12 -0800 | [diff] [blame] | 23 | v1.1.4 |
Yann Collet | c09d16b | 2017-02-14 10:45:19 -0800 | [diff] [blame] | 24 | cli : new : can compress in *.gz format, using --format=gzip command, by Przemyslaw Skibinski |
| 25 | cli : new : advanced benchmark command --priority=rt |
Yann Collet | 58af614 | 2017-02-13 18:32:12 -0800 | [diff] [blame] | 26 | cli : fix : write on sparse-enabled file systems in 32-bits mode, by @ds77 |
Yann Collet | dccd6b6 | 2017-02-27 15:57:50 -0800 | [diff] [blame] | 27 | cli : fix : --rm remains silent when input is stdin |
Yann Collet | 7ae3039 | 2017-03-14 04:19:51 -0700 | [diff] [blame] | 28 | cli : experimental : xzstd, with support for xz/lzma decoding, by Przemyslaw Skibinski |
Yann Collet | 43764cd | 2017-02-28 17:44:17 -0800 | [diff] [blame] | 29 | speed : improved decompression speed in streaming mode for single shot scenarios (+5%) |
Yann Collet | 5a80445 | 2017-04-27 12:49:22 -0700 | [diff] [blame] | 30 | memory: DDict (decompression dictionary) memory usage down from 150 KB to 20 KB |
| 31 | arch: 32-bits variant able to generate and decode very long matches (>32 MB), by Sean Purcell |
Yann Collet | e02409f | 2017-03-02 17:14:57 -0800 | [diff] [blame] | 32 | API : new : ZSTD_findFrameCompressedSize(), ZSTD_getFrameContentSize(), ZSTD_findDecompressedSize() |
Yann Collet | 7ae3039 | 2017-03-14 04:19:51 -0700 | [diff] [blame] | 33 | API : changed : dropped support of legacy versions <= v0.3 (can be changed by modifying ZSTD_LEGACY_SUPPORT value) |
Yann Collet | 5a80445 | 2017-04-27 12:49:22 -0700 | [diff] [blame] | 34 | build : new: meson build system in contrib/meson, by Dima Krasner |
| 35 | build : improved cmake script, by @Majlen |
| 36 | build : added -Wformat-security flag, as recommended by Padraig Brady |
Yann Collet | 58af614 | 2017-02-13 18:32:12 -0800 | [diff] [blame] | 37 | doc : new : educational decoder, by Sean Purcell |
| 38 | |
Yann Collet | d46ecb5 | 2016-12-17 16:28:12 +0100 | [diff] [blame] | 39 | v1.1.3 |
Yann Collet | 5962e58 | 2017-02-05 18:09:35 -0800 | [diff] [blame] | 40 | cli : zstd can decompress .gz files (can be disabled with `make zstd-nogz` or `make HAVE_ZLIB=0`) |
Yann Collet | 122b6aa | 2017-01-27 03:22:37 -0800 | [diff] [blame] | 41 | cli : new : experimental target `make zstdmt`, with multi-threading support |
Yann Collet | 00ea51f | 2017-02-07 12:05:28 -0800 | [diff] [blame] | 42 | cli : new : improved dictionary builder "cover" (experimental), by Nick Terrell, based on prior work by Giuseppe Ottaviano. |
Yann Collet | d76d1a9 | 2016-12-22 20:18:43 +0100 | [diff] [blame] | 43 | cli : new : advanced commands for detailed parameters, by Przemyslaw Skibinski |
Yann Collet | aca113f | 2016-12-23 22:25:03 +0100 | [diff] [blame] | 44 | cli : fix zstdless on Mac OS-X, by Andrew Janke |
Yann Collet | 122b6aa | 2017-01-27 03:22:37 -0800 | [diff] [blame] | 45 | cli : fix #232 "compress non-files" |
Yann Collet | 8e44bd8 | 2017-01-17 13:15:25 -0800 | [diff] [blame] | 46 | dictBuilder : improved dictionary generation quality, thanks to Nick Terrell |
Yann Collet | 122b6aa | 2017-01-27 03:22:37 -0800 | [diff] [blame] | 47 | API : new : lib/compress/ZSTDMT_compress.h multithreading API (experimental) |
Yann Collet | 4e5eea6 | 2016-12-21 16:44:35 +0100 | [diff] [blame] | 48 | API : new : ZSTD_create?Dict_byReference(), requested by Bartosz Taudul |
Yann Collet | d76d1a9 | 2016-12-22 20:18:43 +0100 | [diff] [blame] | 49 | API : new : ZDICT_finalizeDictionary() |
Yann Collet | 122b6aa | 2017-01-27 03:22:37 -0800 | [diff] [blame] | 50 | API : fix : ZSTD_initCStream_usingCDict() properly writes dictID into frame header, by Gregory Szorc (#511) |
| 51 | API : fix : all symbols properly exposed in libzstd, by Nick Terrell |
| 52 | build : support for Solaris target, by Przemyslaw Skibinski |
Yann Collet | 816edeb | 2017-02-06 17:39:54 -0800 | [diff] [blame] | 53 | doc : clarified specification, by Sean Purcell |
Yann Collet | d46ecb5 | 2016-12-17 16:28:12 +0100 | [diff] [blame] | 54 | |
Yann Collet | 0018ca2 | 2016-11-07 14:41:21 -0800 | [diff] [blame] | 55 | v1.1.2 |
Yann Collet | b23420f | 2016-12-13 19:47:17 +0100 | [diff] [blame] | 56 | API : streaming : decompression : changed : automatic implicit reset when chain-decoding new frames without init |
| 57 | API : experimental : added : dictID retrieval functions, and ZSTD_initCStream_srcSize() |
Yann Collet | 0869853 | 2016-12-13 11:45:19 +0100 | [diff] [blame] | 58 | API : zbuff : changed : prototypes now generate deprecation warnings |
| 59 | lib : improved : faster decompression speed at ultra compression settings and 32-bits mode |
| 60 | lib : changed : only public ZSTD_ symbols are now exposed |
| 61 | lib : changed : reduced usage of stack memory |
| 62 | lib : fixed : several corner case bugs, by Nick Terrell |
Yann Collet | 743b33f | 2016-12-02 15:18:57 -0800 | [diff] [blame] | 63 | cli : new : gzstd, experimental version able to decode .gz files, by Przemyslaw Skibinski |
| 64 | cli : new : preserve file attributes |
Yann Collet | 9ffbeea | 2016-12-02 18:37:38 -0800 | [diff] [blame] | 65 | cli : new : added zstdless and zstdgrep tools |
Yann Collet | 2238312 | 2016-12-02 11:36:11 -0800 | [diff] [blame] | 66 | cli : fixed : status displays total amount decoded, even for file consisting of multiple frames (like pzstd) |
Yann Collet | 743b33f | 2016-12-02 15:18:57 -0800 | [diff] [blame] | 67 | cli : fixed : zstdcat |
Yann Collet | e7a41a5 | 2016-12-05 16:21:06 -0800 | [diff] [blame] | 68 | zlib_wrapper : added support for gz* functions, by Przemyslaw Skibinski |
Yann Collet | 0869853 | 2016-12-13 11:45:19 +0100 | [diff] [blame] | 69 | install : better compatibility with FreeBSD, by Dimitry Andric |
| 70 | source tree : changed : zbuff source files moved to lib/deprecated |
Yann Collet | 0018ca2 | 2016-11-07 14:41:21 -0800 | [diff] [blame] | 71 | |
Yann Collet | e405c7a | 2016-10-12 15:29:22 -0700 | [diff] [blame] | 72 | v1.1.1 |
Yann Collet | 2b361cf | 2016-10-14 16:03:34 -0700 | [diff] [blame] | 73 | New : command -M#, --memory=, --memlimit=, --memlimit-decompress= to limit allowed memory consumption |
Yann Collet | 37d1300 | 2016-10-24 17:22:12 -0700 | [diff] [blame] | 74 | New : doc/zstd_manual.html, by Przemyslaw Skibinski |
Yann Collet | 9516234 | 2016-10-25 16:19:52 -0700 | [diff] [blame] | 75 | Improved : slightly better compression ratio at --ultra levels (>= 20) |
Yann Collet | 4c0b44f | 2016-11-01 11:13:22 -0700 | [diff] [blame] | 76 | Improved : better memory usage when using streaming compression API, thanks to @Rogier-5 report |
| 77 | Added : API : ZSTD_initCStream_usingCDict(), ZSTD_initDStream_usingDDict() (experimental section) |
| 78 | Added : example/multiple_streaming_compression.c |
| 79 | Changed : zstd_errors.h is now installed within /include (and replaces errors_public.h) |
Yann Collet | 22de81e | 2016-10-28 13:58:31 -0700 | [diff] [blame] | 80 | Updated man page |
Yann Collet | 37d1300 | 2016-10-24 17:22:12 -0700 | [diff] [blame] | 81 | Fixed : zstd-small, zstd-compress and zstd-decompress compilation targets |
Yann Collet | e405c7a | 2016-10-12 15:29:22 -0700 | [diff] [blame] | 82 | |
Yann Collet | 1eb2fdc | 2016-09-18 12:21:47 +0200 | [diff] [blame] | 83 | v1.1.0 |
Yann Collet | 1563bfe | 2016-09-02 11:44:21 -0700 | [diff] [blame] | 84 | New : contrib/pzstd, parallel version of zstd, by Nick Terrell |
Yann Collet | a4c212c | 2016-09-05 08:06:33 -0700 | [diff] [blame] | 85 | added : NetBSD install target (#338) |
Yann Collet | 83543a7 | 2016-09-28 00:15:03 +0200 | [diff] [blame] | 86 | Improved : speed for batches of small files |
| 87 | Improved : speed of zlib wrapper, by Przemyslaw Skibinski |
| 88 | Changed : libzstd on Windows supports legacy formats, by Christophe Chevalier |
Yann Collet | 7304eb7 | 2016-09-01 15:47:33 -0700 | [diff] [blame] | 89 | Fixed : CLI -d output to stdout by default when input is stdin (#322) |
Yann Collet | 60181e3 | 2016-09-01 17:12:26 -0700 | [diff] [blame] | 90 | Fixed : CLI correctly detects console on Mac OS-X |
Yann Collet | 220c567 | 2016-09-13 19:40:50 +0200 | [diff] [blame] | 91 | Fixed : CLI supports recursive mode `-r` on Mac OS-X |
| 92 | Fixed : Legacy decoders use unified error codes, reported by benrg (#341), fixed by Przemyslaw Skibinski |
Yann Collet | 855766d | 2016-09-02 17:04:49 -0700 | [diff] [blame] | 93 | Fixed : compatibility with OpenBSD, reported by Juan Francisco Cantero Hurtado (#319) |
Yann Collet | 30d3056 | 2016-09-13 17:23:31 +0200 | [diff] [blame] | 94 | Fixed : compatibility with Hurd, by Przemyslaw Skibinski (#365) |
Yann Collet | 1563bfe | 2016-09-02 11:44:21 -0700 | [diff] [blame] | 95 | Fixed : zstd-pgo, reported by octoploid (#329) |
Yann Collet | 7304eb7 | 2016-09-01 15:47:33 -0700 | [diff] [blame] | 96 | |
Yann Collet | 0588ee6 | 2016-08-31 09:05:22 -0700 | [diff] [blame] | 97 | v1.0.0 |
| 98 | Change Licensing, all project is now BSD, Copyright Facebook |
Yann Collet | 8baf78a | 2016-08-20 03:47:49 +0200 | [diff] [blame] | 99 | Small decompression speed improvement |
Yann Collet | 0588ee6 | 2016-08-31 09:05:22 -0700 | [diff] [blame] | 100 | API : Streaming API supports legacy format |
| 101 | API : ZDICT_getDictID(), ZSTD_sizeof_{CCtx, DCtx, CStream, DStream}(), ZSTD_setDStreamParamter() |
| 102 | CLI supports legacy formats v0.4+ |
| 103 | Fixed : compression fails on certain huge files, reported by Jesse McGrew |
Yann Collet | 94376ac | 2016-08-25 19:09:21 +0200 | [diff] [blame] | 104 | Enhanced documentation, by Przemyslaw Skibinski |
Yann Collet | 8baf78a | 2016-08-20 03:47:49 +0200 | [diff] [blame] | 105 | |
Yann Collet | 346efcc | 2016-08-02 14:26:00 +0200 | [diff] [blame] | 106 | v0.8.1 |
Yann Collet | 655393c | 2016-08-14 00:16:20 +0200 | [diff] [blame] | 107 | New streaming API |
Yann Collet | fe0590f | 2016-08-12 18:04:15 +0200 | [diff] [blame] | 108 | Changed : --ultra now enables levels beyond 19 |
Yann Collet | 346efcc | 2016-08-02 14:26:00 +0200 | [diff] [blame] | 109 | Changed : -i# now selects benchmark time in second |
| 110 | Fixed : ZSTD_compress* can now compress > 4 GB in a single pass, reported by Nick Terrell |
Yann Collet | fe0590f | 2016-08-12 18:04:15 +0200 | [diff] [blame] | 111 | Fixed : speed regression on specific patterns (#272) |
Yann Collet | b3950ee | 2016-08-16 15:10:30 +0200 | [diff] [blame] | 112 | Fixed : support for Z_SYNC_FLUSH, by Dmitry Krot (#291) |
Yann Collet | 79d9cdd | 2016-08-18 11:50:37 +0200 | [diff] [blame] | 113 | Fixed : ICC compilation, by Przemyslaw Skibinski |
Yann Collet | 346efcc | 2016-08-02 14:26:00 +0200 | [diff] [blame] | 114 | |
Yann Collet | 6fa05a2 | 2016-07-20 14:58:49 +0200 | [diff] [blame] | 115 | v0.8.0 |
Yann Collet | dd25a27 | 2016-07-27 12:35:29 +0200 | [diff] [blame] | 116 | Improved : better speed on clang and gcc -O2, thanks to Eric Biggers |
Yann Collet | 8f29e8e | 2016-07-31 02:43:17 +0200 | [diff] [blame] | 117 | New : Build on FreeBSD and DragonFly, thanks to JrMarino |
Yann Collet | 62470b4 | 2016-07-28 15:29:08 +0200 | [diff] [blame] | 118 | Changed : modified API : ZSTD_compressEnd() |
Yann Collet | d5c5a77 | 2016-07-19 15:06:55 +0200 | [diff] [blame] | 119 | Fixed : legacy mode with ZSTD_HEAPMODE=0, by Christopher Bergqvist |
Yann Collet | 24a3d90 | 2016-07-26 01:26:56 +0200 | [diff] [blame] | 120 | Fixed : premature end of frame when zero-sized raw block, reported by Eric Biggers |
Yann Collet | 3ca7503 | 2016-08-01 02:26:20 +0200 | [diff] [blame] | 121 | Fixed : large dictionaries (> 384 KB), reported by Ilona Papava |
Yann Collet | 6fa05a2 | 2016-07-20 14:58:49 +0200 | [diff] [blame] | 122 | Fixed : checksum correctly checked in single-pass mode |
Yann Collet | 24a3d90 | 2016-07-26 01:26:56 +0200 | [diff] [blame] | 123 | Fixed : combined --test amd --rm, reported by Andreas M. Nilsson |
Yann Collet | 85f3919 | 2016-07-17 20:42:21 +0200 | [diff] [blame] | 124 | Modified : minor compression level adaptations |
Yann Collet | 6fa05a2 | 2016-07-20 14:58:49 +0200 | [diff] [blame] | 125 | Updated : compression format specification to v0.2.0 |
Yann Collet | 356e5e2 | 2016-07-18 03:14:58 +0200 | [diff] [blame] | 126 | changed : zstd.h moved to /lib directory |
Yann Collet | d54b2d2 | 2016-07-17 15:53:18 +0200 | [diff] [blame] | 127 | |
Yann Collet | ef9999f | 2016-09-01 16:44:48 -0700 | [diff] [blame] | 128 | v0.7.5 |
| 129 | Transition version, supporting decoding of v0.8.x |
| 130 | |
Yann Collet | 5e80dd3 | 2016-07-13 17:38:39 +0200 | [diff] [blame] | 131 | v0.7.4 |
Yann Collet | d5c5a77 | 2016-07-19 15:06:55 +0200 | [diff] [blame] | 132 | Added : homebrew for Mac, by Daniel Cade |
Yann Collet | 3b8b575 | 2016-07-16 20:04:47 +0200 | [diff] [blame] | 133 | Added : more examples |
Yann Collet | 227cc39 | 2016-07-15 11:27:09 +0200 | [diff] [blame] | 134 | Fixed : segfault when using small dictionaries, reported by Felix Handte |
Yann Collet | 3b8b575 | 2016-07-16 20:04:47 +0200 | [diff] [blame] | 135 | Modified : default compression level for CLI is now 3 |
| 136 | Updated : specification, to v0.1.1 |
Yann Collet | ea2ecdc | 2016-07-14 22:43:12 +0200 | [diff] [blame] | 137 | |
Yann Collet | d916c90 | 2016-07-04 00:42:58 +0200 | [diff] [blame] | 138 | v0.7.3 |
Yann Collet | d4e103a | 2016-07-08 19:18:30 +0200 | [diff] [blame] | 139 | New : compression format specification |
Yann Collet | 19c27d2 | 2016-07-07 14:40:13 +0200 | [diff] [blame] | 140 | New : `--` separator, stating that all following arguments are file names. Suggested by Chip Turner. |
| 141 | New : `ZSTD_getDecompressedSize()` |
| 142 | New : OpenBSD target, by Juan Francisco Cantero Hurtado |
| 143 | New : `examples` directory |
Yann Collet | a295b31 | 2016-07-06 13:13:12 +0200 | [diff] [blame] | 144 | fixed : dictBuilder using HC levels, reported by Bartosz Taudul |
Yann Collet | f246cf5 | 2016-07-06 20:30:52 +0200 | [diff] [blame] | 145 | fixed : legacy support from ZSTD_decompress_usingDDict(), reported by Felix Handte |
Yann Collet | d4e103a | 2016-07-08 19:18:30 +0200 | [diff] [blame] | 146 | fixed : multi-blocks decoding with intermediate uncompressed blocks, reported by Greg Slazinski |
Yann Collet | 19c27d2 | 2016-07-07 14:40:13 +0200 | [diff] [blame] | 147 | modified : removed "mem.h" and "error_public.h" dependencies from "zstd.h" (experimental section) |
| 148 | modified : legacy functions no longer need magic number |
Yann Collet | d916c90 | 2016-07-04 00:42:58 +0200 | [diff] [blame] | 149 | |
Yann Collet | 529d9c7 | 2016-06-27 10:03:10 +0200 | [diff] [blame] | 150 | v0.7.2 |
Yann Collet | 00d44ab | 2016-07-04 01:29:47 +0200 | [diff] [blame] | 151 | fixed : ZSTD_decompressBlock() using multiple consecutive blocks. Reported by Greg Slazinski. |
Yann Collet | d96e8f2 | 2016-07-02 22:03:08 +0200 | [diff] [blame] | 152 | fixed : potential segfault on very large files (many gigabytes). Reported by Chip Turner. |
| 153 | fixed : CLI displays system error message when destination file cannot be created (#231). Reported by Chip Turner. |
Yann Collet | 529d9c7 | 2016-06-27 10:03:10 +0200 | [diff] [blame] | 154 | |
Yann Collet | c98f8e7 | 2016-06-20 16:31:24 +0200 | [diff] [blame] | 155 | v0.7.1 |
Yann Collet | aa29226 | 2016-06-21 14:04:57 +0200 | [diff] [blame] | 156 | fixed : ZBUFF_compressEnd() called multiple times with too small `dst` buffer, reported by Christophe Chevalier |
Yann Collet | 3755eb8 | 2016-06-22 13:15:53 +0200 | [diff] [blame] | 157 | fixed : dictBuilder fails if first sample is too small, reported by ะ ััะปะฐะฝ ะะพะฒะฐะปัะฒ |
Yann Collet | a436a52 | 2016-06-20 23:34:04 +0200 | [diff] [blame] | 158 | fixed : corruption issue, reported by cj |
| 159 | modified : checksum enabled by default in command line mode |
Yann Collet | c98f8e7 | 2016-06-20 16:31:24 +0200 | [diff] [blame] | 160 | |
Yann Collet | e3f4e6c | 2016-05-31 10:12:04 +0200 | [diff] [blame] | 161 | v0.7.0 |
Yann Collet | dd97e24 | 2016-05-30 14:05:44 +0200 | [diff] [blame] | 162 | New : Support for directory compression, using `-r`, thanks to Przemyslaw Skibinski |
Yann Collet | b09b12c | 2016-06-09 22:59:51 +0200 | [diff] [blame] | 163 | New : Command `--rm`, to remove source file after successful de/compression |
Yann Collet | 662a541 | 2016-06-08 11:11:02 +0200 | [diff] [blame] | 164 | New : Visual build scripts, by Christophe Chevalier |
Yann Collet | de95f96 | 2016-05-23 19:46:47 +0200 | [diff] [blame] | 165 | New : Support for Sparse File-systems (do not use space for zero-filled sectors) |
Yann Collet | 0d31160 | 2016-06-04 00:09:02 +0200 | [diff] [blame] | 166 | New : Frame checksum support |
Yann Collet | e3f4e6c | 2016-05-31 10:12:04 +0200 | [diff] [blame] | 167 | New : Support pass-through mode (when using `-df`) |
Yann Collet | 4948f27 | 2016-06-16 15:38:51 +0200 | [diff] [blame] | 168 | API : more efficient Dictionary API : `ZSTD_compress_usingCDict()`, `ZSTD_decompress_usingDDict()` |
| 169 | API : create dictionary files from custom content, by Giuseppe Ottaviano |
| 170 | API : support for custom malloc/free functions |
Yann Collet | e3f4e6c | 2016-05-31 10:12:04 +0200 | [diff] [blame] | 171 | New : controllable Dictionary ID |
Yann Collet | 0d31160 | 2016-06-04 00:09:02 +0200 | [diff] [blame] | 172 | New : Support for skippable frames |
Yann Collet | de95f96 | 2016-05-23 19:46:47 +0200 | [diff] [blame] | 173 | |
Yann Collet | f6ca09b | 2016-05-09 04:44:45 +0200 | [diff] [blame] | 174 | v0.6.1 |
Yann Collet | e6aa23b | 2016-05-13 11:29:38 +0200 | [diff] [blame] | 175 | New : zlib wrapper API, thanks to Przemyslaw Skibinski |
Yann Collet | d9b3cca | 2016-05-13 12:43:36 +0200 | [diff] [blame] | 176 | New : Ability to compile compressor / decompressor separately |
| 177 | Changed : new lib directory structure |
Yann Collet | f6ca09b | 2016-05-09 04:44:45 +0200 | [diff] [blame] | 178 | Fixed : Legacy codec v0.5 compatible with dictionary decompression |
| 179 | Fixed : Decoder corruption error (#173) |
Yann Collet | 918b934 | 2016-05-10 07:00:07 +0200 | [diff] [blame] | 180 | Fixed : null-string roundtrip (#176) |
Yann Collet | e6aa23b | 2016-05-13 11:29:38 +0200 | [diff] [blame] | 181 | New : benchmark mode can select directory as input |
Yann Collet | d9b3cca | 2016-05-13 12:43:36 +0200 | [diff] [blame] | 182 | Experimental : midipix support, VMS support |
Yann Collet | f6ca09b | 2016-05-09 04:44:45 +0200 | [diff] [blame] | 183 | |
Yann Collet | 6cb4135 | 2016-03-15 15:47:38 +0100 | [diff] [blame] | 184 | v0.6.0 |
| 185 | Stronger high compression modes, thanks to Przemyslaw Skibinski |
| 186 | API : ZSTD_getFrameParams() provides size of decompressed content |
Yann Collet | 34b20ec | 2016-03-15 20:47:23 +0100 | [diff] [blame] | 187 | New : highest compression modes require `--ultra` command to fully unleash their capacity |
Yann Collet | fbc40b8 | 2016-03-16 16:53:47 +0100 | [diff] [blame] | 188 | Fixed : zstd cli return error code > 0 and removes dst file artifact when decompression fails, thanks to Chip Turner |
Yann Collet | 6cb4135 | 2016-03-15 15:47:38 +0100 | [diff] [blame] | 189 | |
Yann Collet | 0db4115 | 2016-02-10 14:50:22 +0100 | [diff] [blame] | 190 | v0.5.1 |
| 191 | New : Optimal parsing => Very high compression modes, thanks to Przemyslaw Skibinski |
Yann Collet | 459a6b7 | 2016-02-15 20:37:23 +0100 | [diff] [blame] | 192 | Changed : Dictionary builder integrated into libzstd and zstd cli |
Yann Collet | 4c64d51 | 2016-02-18 01:01:42 +0100 | [diff] [blame] | 193 | Changed (!) : zstd cli now uses "multiple input files" as default mode. See `zstd -h`. |
Yann Collet | 459a6b7 | 2016-02-15 20:37:23 +0100 | [diff] [blame] | 194 | Fix : high compression modes for big-endian platforms |
Yann Collet | 2d08b09 | 2016-02-16 14:42:08 +0100 | [diff] [blame] | 195 | New : zstd cli : `-t` | `--test` command |
Yann Collet | 0db4115 | 2016-02-10 14:50:22 +0100 | [diff] [blame] | 196 | |
Yann Collet | fb810d6 | 2016-01-28 00:18:06 +0100 | [diff] [blame] | 197 | v0.5.0 |
Yann Collet | e618f8e | 2016-01-28 00:29:58 +0100 | [diff] [blame] | 198 | New : dictionary builder utility |
Yann Collet | fd416f1 | 2016-01-30 03:14:15 +0100 | [diff] [blame] | 199 | Changed : streaming & dictionary API |
Yann Collet | 45ff430 | 2016-02-05 15:24:57 +0100 | [diff] [blame] | 200 | Improved : better compression of small data |
Yann Collet | fb810d6 | 2016-01-28 00:18:06 +0100 | [diff] [blame] | 201 | |
Yann Collet | 223f633 | 2016-01-21 13:33:05 +0100 | [diff] [blame] | 202 | v0.4.7 |
| 203 | Improved : small compression speed improvement in HC mode |
| 204 | Changed : `zstd_decompress.c` has ZSTD_LEGACY_SUPPORT to 0 by default |
| 205 | fix : bt search bug |
| 206 | |
Yann Collet | 5f9f987 | 2015-12-30 19:52:08 +0100 | [diff] [blame] | 207 | v0.4.6 |
| 208 | fix : fast compression mode on Windows |
Yann Collet | 3e5b73b | 2016-01-10 20:46:20 +0100 | [diff] [blame] | 209 | New : cmake configuration file, thanks to Artyom Dymchenko |
Yann Collet | 5f9f987 | 2015-12-30 19:52:08 +0100 | [diff] [blame] | 210 | Improved : high compression mode on repetitive data |
Yann Collet | bf42c8e | 2016-01-09 01:08:23 +0100 | [diff] [blame] | 211 | New : block-level API |
| 212 | New : ZSTD_duplicateCCtx() |
Yann Collet | 5f9f987 | 2015-12-30 19:52:08 +0100 | [diff] [blame] | 213 | |
Yann Collet | deb078b | 2015-12-17 20:30:14 +0100 | [diff] [blame] | 214 | v0.4.5 |
| 215 | new : -m/--multiple : compress/decompress multiple files |
| 216 | |
Yann Collet | 7b7027f | 2015-12-10 23:53:21 +0100 | [diff] [blame] | 217 | v0.4.4 |
Yann Collet | 6c3e2e7 | 2015-12-11 10:44:07 +0100 | [diff] [blame] | 218 | Fixed : high compression modes for Windows 32 bits |
Yann Collet | f6f3d75 | 2015-12-13 13:35:21 +0100 | [diff] [blame] | 219 | new : external dictionary API extended to buffered mode and accessible through command line |
Yann Collet | 7b7027f | 2015-12-10 23:53:21 +0100 | [diff] [blame] | 220 | new : windows DLL project, thanks to Christophe Chevalier |
| 221 | |
Yann Collet | 28e7cef | 2015-12-03 12:11:30 +0100 | [diff] [blame] | 222 | v0.4.3 : |
Yann Collet | 417890c | 2015-12-04 17:16:37 +0100 | [diff] [blame] | 223 | new : external dictionary API |
Yann Collet | 56005e7 | 2015-12-07 10:44:25 +0100 | [diff] [blame] | 224 | new : zstd-frugal |
Yann Collet | 28e7cef | 2015-12-03 12:11:30 +0100 | [diff] [blame] | 225 | |
Yann Collet | aaf6f20 | 2015-12-02 15:03:11 +0100 | [diff] [blame] | 226 | v0.4.2 : |
| 227 | Generic minor improvements for small blocks |
| 228 | Fixed : big-endian compatibility, by Peter Harris (#85) |
| 229 | |
Yann Collet | a85a8dd | 2015-11-30 11:53:11 +0100 | [diff] [blame] | 230 | v0.4.1 |
Yann Collet | 44287a3 | 2015-11-30 23:13:56 +0100 | [diff] [blame] | 231 | Fixed : ZSTD_LEGACY_SUPPORT=0 build mode (reported by Luben) |
Yann Collet | daa1c65 | 2015-11-30 12:25:48 +0100 | [diff] [blame] | 232 | removed `zstd.c` |
Yann Collet | a85a8dd | 2015-11-30 11:53:11 +0100 | [diff] [blame] | 233 | |
Yann Collet | 7f6e91f | 2015-11-11 14:39:50 +0100 | [diff] [blame] | 234 | v0.4.0 |
Yann Collet | dd97e24 | 2016-05-30 14:05:44 +0200 | [diff] [blame] | 235 | Command line utility compatible with high compression levels |
Yann Collet | 7f6e91f | 2015-11-11 14:39:50 +0100 | [diff] [blame] | 236 | Removed zstdhc => merged into zstd |
Yann Collet | 88fcd29 | 2015-11-25 14:42:45 +0100 | [diff] [blame] | 237 | Added : ZBUFF API (see zstd_buffered.h) |
Yann Collet | 5b78d2f | 2015-11-12 15:36:05 +0100 | [diff] [blame] | 238 | Rolling buffer support |
Yann Collet | 7f6e91f | 2015-11-11 14:39:50 +0100 | [diff] [blame] | 239 | |
Yann Collet | 43e0cd5 | 2015-11-09 16:38:17 +0100 | [diff] [blame] | 240 | v0.3.6 |
| 241 | small blocks params |
| 242 | |
Yann Collet | f48e35c | 2015-11-07 01:13:31 +0100 | [diff] [blame] | 243 | v0.3.5 |
| 244 | minor generic compression improvements |
| 245 | |
Yann Collet | f12c130 | 2015-11-05 18:16:59 +0100 | [diff] [blame] | 246 | v0.3.4 |
Yann Collet | acd222c | 2015-11-06 12:39:39 +0100 | [diff] [blame] | 247 | Faster fast cLevels |
Yann Collet | f12c130 | 2015-11-05 18:16:59 +0100 | [diff] [blame] | 248 | |
Yann Collet | 3564487 | 2015-11-02 16:14:46 +0100 | [diff] [blame] | 249 | v0.3.3 |
| 250 | Small compression ratio improvement |
| 251 | |
Yann Collet | 7671f39 | 2015-11-02 12:17:39 +0100 | [diff] [blame] | 252 | v0.3.2 |
| 253 | Fixed Visual Studio |
| 254 | |
Yann Collet | 66d22b8 | 2015-11-02 02:36:10 +0100 | [diff] [blame] | 255 | v0.3.1 : |
| 256 | Small compression ratio improvement |
| 257 | |
Yann Collet | c776c46 | 2015-10-29 19:10:54 +0100 | [diff] [blame] | 258 | v0.3 |
| 259 | HC mode : compression levels 2-26 |
| 260 | |
Yann Collet | 1077bb8 | 2015-10-28 12:32:25 +0100 | [diff] [blame] | 261 | v0.2.2 |
| 262 | Fix : Visual Studio 2013 & 2015 release compilation, by Christophe Chevalier |
| 263 | |
Yann Collet | 81e49e6 | 2015-10-28 15:56:48 +0100 | [diff] [blame] | 264 | v0.2.1 |
Yann Collet | dd97e24 | 2016-05-30 14:05:44 +0200 | [diff] [blame] | 265 | Fix : Read errors, advanced fuzzer tests, by Hanno Bรถck |
Yann Collet | 1077bb8 | 2015-10-28 12:32:25 +0100 | [diff] [blame] | 266 | |
Yann Collet | a3befd3 | 2015-10-21 11:13:31 +0100 | [diff] [blame] | 267 | v0.2.0 |
| 268 | **Breaking format change** |
| 269 | Faster decompression speed |
| 270 | Can still decode v0.1 format |
| 271 | |
| 272 | v0.1.3 |
| 273 | fix uninitialization warning, reported by Evan Nemerson |
| 274 | |
Yann Collet | 5abd820 | 2015-08-27 03:16:04 +0100 | [diff] [blame] | 275 | v0.1.2 |
Yann Collet | a3befd3 | 2015-10-21 11:13:31 +0100 | [diff] [blame] | 276 | frame concatenation support |
Yann Collet | 5abd820 | 2015-08-27 03:16:04 +0100 | [diff] [blame] | 277 | |
| 278 | v0.1.1 |
| 279 | fix compression bug |
| 280 | detects write-flush errors |
Yann Collet | 33a0465 | 2016-09-02 22:11:49 -0700 | [diff] [blame] | 281 | |
Yann Collet | 5abd820 | 2015-08-27 03:16:04 +0100 | [diff] [blame] | 282 | v0.1.0 |
| 283 | first release |