Yann Collet | 5e80dd3 | 2016-07-13 17:38:39 +0200 | [diff] [blame^] | 1 | v0.7.4 |
| 2 | Modified : default compression level for CLI is 3 |
| 3 | |
Yann Collet | d916c90 | 2016-07-04 00:42:58 +0200 | [diff] [blame] | 4 | v0.7.3 |
Yann Collet | d4e103a | 2016-07-08 19:18:30 +0200 | [diff] [blame] | 5 | New : compression format specification |
Yann Collet | 19c27d2 | 2016-07-07 14:40:13 +0200 | [diff] [blame] | 6 | New : `--` separator, stating that all following arguments are file names. Suggested by Chip Turner. |
| 7 | New : `ZSTD_getDecompressedSize()` |
| 8 | New : OpenBSD target, by Juan Francisco Cantero Hurtado |
| 9 | New : `examples` directory |
Yann Collet | a295b31 | 2016-07-06 13:13:12 +0200 | [diff] [blame] | 10 | fixed : dictBuilder using HC levels, reported by Bartosz Taudul |
Yann Collet | f246cf5 | 2016-07-06 20:30:52 +0200 | [diff] [blame] | 11 | fixed : legacy support from ZSTD_decompress_usingDDict(), reported by Felix Handte |
Yann Collet | d4e103a | 2016-07-08 19:18:30 +0200 | [diff] [blame] | 12 | fixed : multi-blocks decoding with intermediate uncompressed blocks, reported by Greg Slazinski |
Yann Collet | 19c27d2 | 2016-07-07 14:40:13 +0200 | [diff] [blame] | 13 | modified : removed "mem.h" and "error_public.h" dependencies from "zstd.h" (experimental section) |
| 14 | modified : legacy functions no longer need magic number |
Yann Collet | d916c90 | 2016-07-04 00:42:58 +0200 | [diff] [blame] | 15 | |
Yann Collet | 529d9c7 | 2016-06-27 10:03:10 +0200 | [diff] [blame] | 16 | v0.7.2 |
Yann Collet | 00d44ab | 2016-07-04 01:29:47 +0200 | [diff] [blame] | 17 | fixed : ZSTD_decompressBlock() using multiple consecutive blocks. Reported by Greg Slazinski. |
Yann Collet | d96e8f2 | 2016-07-02 22:03:08 +0200 | [diff] [blame] | 18 | fixed : potential segfault on very large files (many gigabytes). Reported by Chip Turner. |
| 19 | 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] | 20 | |
Yann Collet | c98f8e7 | 2016-06-20 16:31:24 +0200 | [diff] [blame] | 21 | v0.7.1 |
Yann Collet | aa29226 | 2016-06-21 14:04:57 +0200 | [diff] [blame] | 22 | 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] | 23 | fixed : dictBuilder fails if first sample is too small, reported by Руслан Ковалёв |
Yann Collet | a436a52 | 2016-06-20 23:34:04 +0200 | [diff] [blame] | 24 | fixed : corruption issue, reported by cj |
| 25 | modified : checksum enabled by default in command line mode |
Yann Collet | c98f8e7 | 2016-06-20 16:31:24 +0200 | [diff] [blame] | 26 | |
Yann Collet | e3f4e6c | 2016-05-31 10:12:04 +0200 | [diff] [blame] | 27 | v0.7.0 |
Yann Collet | dd97e24 | 2016-05-30 14:05:44 +0200 | [diff] [blame] | 28 | New : Support for directory compression, using `-r`, thanks to Przemyslaw Skibinski |
Yann Collet | b09b12c | 2016-06-09 22:59:51 +0200 | [diff] [blame] | 29 | New : Command `--rm`, to remove source file after successful de/compression |
Yann Collet | 662a541 | 2016-06-08 11:11:02 +0200 | [diff] [blame] | 30 | New : Visual build scripts, by Christophe Chevalier |
Yann Collet | de95f96 | 2016-05-23 19:46:47 +0200 | [diff] [blame] | 31 | 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] | 32 | New : Frame checksum support |
Yann Collet | e3f4e6c | 2016-05-31 10:12:04 +0200 | [diff] [blame] | 33 | New : Support pass-through mode (when using `-df`) |
Yann Collet | 4948f27 | 2016-06-16 15:38:51 +0200 | [diff] [blame] | 34 | API : more efficient Dictionary API : `ZSTD_compress_usingCDict()`, `ZSTD_decompress_usingDDict()` |
| 35 | API : create dictionary files from custom content, by Giuseppe Ottaviano |
| 36 | API : support for custom malloc/free functions |
Yann Collet | e3f4e6c | 2016-05-31 10:12:04 +0200 | [diff] [blame] | 37 | New : controllable Dictionary ID |
Yann Collet | 0d31160 | 2016-06-04 00:09:02 +0200 | [diff] [blame] | 38 | New : Support for skippable frames |
Yann Collet | de95f96 | 2016-05-23 19:46:47 +0200 | [diff] [blame] | 39 | |
Yann Collet | f6ca09b | 2016-05-09 04:44:45 +0200 | [diff] [blame] | 40 | v0.6.1 |
Yann Collet | e6aa23b | 2016-05-13 11:29:38 +0200 | [diff] [blame] | 41 | New : zlib wrapper API, thanks to Przemyslaw Skibinski |
Yann Collet | d9b3cca | 2016-05-13 12:43:36 +0200 | [diff] [blame] | 42 | New : Ability to compile compressor / decompressor separately |
| 43 | Changed : new lib directory structure |
Yann Collet | f6ca09b | 2016-05-09 04:44:45 +0200 | [diff] [blame] | 44 | Fixed : Legacy codec v0.5 compatible with dictionary decompression |
| 45 | Fixed : Decoder corruption error (#173) |
Yann Collet | 918b934 | 2016-05-10 07:00:07 +0200 | [diff] [blame] | 46 | Fixed : null-string roundtrip (#176) |
Yann Collet | e6aa23b | 2016-05-13 11:29:38 +0200 | [diff] [blame] | 47 | New : benchmark mode can select directory as input |
Yann Collet | d9b3cca | 2016-05-13 12:43:36 +0200 | [diff] [blame] | 48 | Experimental : midipix support, VMS support |
Yann Collet | f6ca09b | 2016-05-09 04:44:45 +0200 | [diff] [blame] | 49 | |
Yann Collet | 6cb4135 | 2016-03-15 15:47:38 +0100 | [diff] [blame] | 50 | v0.6.0 |
| 51 | Stronger high compression modes, thanks to Przemyslaw Skibinski |
| 52 | API : ZSTD_getFrameParams() provides size of decompressed content |
Yann Collet | 34b20ec | 2016-03-15 20:47:23 +0100 | [diff] [blame] | 53 | New : highest compression modes require `--ultra` command to fully unleash their capacity |
Yann Collet | fbc40b8 | 2016-03-16 16:53:47 +0100 | [diff] [blame] | 54 | 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] | 55 | |
Yann Collet | 0db4115 | 2016-02-10 14:50:22 +0100 | [diff] [blame] | 56 | v0.5.1 |
| 57 | New : Optimal parsing => Very high compression modes, thanks to Przemyslaw Skibinski |
Yann Collet | 459a6b7 | 2016-02-15 20:37:23 +0100 | [diff] [blame] | 58 | Changed : Dictionary builder integrated into libzstd and zstd cli |
Yann Collet | 4c64d51 | 2016-02-18 01:01:42 +0100 | [diff] [blame] | 59 | 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] | 60 | Fix : high compression modes for big-endian platforms |
Yann Collet | 2d08b09 | 2016-02-16 14:42:08 +0100 | [diff] [blame] | 61 | New : zstd cli : `-t` | `--test` command |
Yann Collet | 0db4115 | 2016-02-10 14:50:22 +0100 | [diff] [blame] | 62 | |
Yann Collet | fb810d6 | 2016-01-28 00:18:06 +0100 | [diff] [blame] | 63 | v0.5.0 |
Yann Collet | e618f8e | 2016-01-28 00:29:58 +0100 | [diff] [blame] | 64 | New : dictionary builder utility |
Yann Collet | fd416f1 | 2016-01-30 03:14:15 +0100 | [diff] [blame] | 65 | Changed : streaming & dictionary API |
Yann Collet | 45ff430 | 2016-02-05 15:24:57 +0100 | [diff] [blame] | 66 | Improved : better compression of small data |
Yann Collet | fb810d6 | 2016-01-28 00:18:06 +0100 | [diff] [blame] | 67 | |
Yann Collet | 223f633 | 2016-01-21 13:33:05 +0100 | [diff] [blame] | 68 | v0.4.7 |
| 69 | Improved : small compression speed improvement in HC mode |
| 70 | Changed : `zstd_decompress.c` has ZSTD_LEGACY_SUPPORT to 0 by default |
| 71 | fix : bt search bug |
| 72 | |
Yann Collet | 5f9f987 | 2015-12-30 19:52:08 +0100 | [diff] [blame] | 73 | v0.4.6 |
| 74 | fix : fast compression mode on Windows |
Yann Collet | 3e5b73b | 2016-01-10 20:46:20 +0100 | [diff] [blame] | 75 | New : cmake configuration file, thanks to Artyom Dymchenko |
Yann Collet | 5f9f987 | 2015-12-30 19:52:08 +0100 | [diff] [blame] | 76 | Improved : high compression mode on repetitive data |
Yann Collet | bf42c8e | 2016-01-09 01:08:23 +0100 | [diff] [blame] | 77 | New : block-level API |
| 78 | New : ZSTD_duplicateCCtx() |
Yann Collet | 5f9f987 | 2015-12-30 19:52:08 +0100 | [diff] [blame] | 79 | |
Yann Collet | deb078b | 2015-12-17 20:30:14 +0100 | [diff] [blame] | 80 | v0.4.5 |
| 81 | new : -m/--multiple : compress/decompress multiple files |
| 82 | |
Yann Collet | 7b7027f | 2015-12-10 23:53:21 +0100 | [diff] [blame] | 83 | v0.4.4 |
Yann Collet | 6c3e2e7 | 2015-12-11 10:44:07 +0100 | [diff] [blame] | 84 | Fixed : high compression modes for Windows 32 bits |
Yann Collet | f6f3d75 | 2015-12-13 13:35:21 +0100 | [diff] [blame] | 85 | 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] | 86 | new : windows DLL project, thanks to Christophe Chevalier |
| 87 | |
Yann Collet | 28e7cef | 2015-12-03 12:11:30 +0100 | [diff] [blame] | 88 | v0.4.3 : |
Yann Collet | 417890c | 2015-12-04 17:16:37 +0100 | [diff] [blame] | 89 | new : external dictionary API |
Yann Collet | 56005e7 | 2015-12-07 10:44:25 +0100 | [diff] [blame] | 90 | new : zstd-frugal |
Yann Collet | 28e7cef | 2015-12-03 12:11:30 +0100 | [diff] [blame] | 91 | |
Yann Collet | aaf6f20 | 2015-12-02 15:03:11 +0100 | [diff] [blame] | 92 | v0.4.2 : |
| 93 | Generic minor improvements for small blocks |
| 94 | Fixed : big-endian compatibility, by Peter Harris (#85) |
| 95 | |
Yann Collet | a85a8dd | 2015-11-30 11:53:11 +0100 | [diff] [blame] | 96 | v0.4.1 |
Yann Collet | 44287a3 | 2015-11-30 23:13:56 +0100 | [diff] [blame] | 97 | Fixed : ZSTD_LEGACY_SUPPORT=0 build mode (reported by Luben) |
Yann Collet | daa1c65 | 2015-11-30 12:25:48 +0100 | [diff] [blame] | 98 | removed `zstd.c` |
Yann Collet | a85a8dd | 2015-11-30 11:53:11 +0100 | [diff] [blame] | 99 | |
Yann Collet | 7f6e91f | 2015-11-11 14:39:50 +0100 | [diff] [blame] | 100 | v0.4.0 |
Yann Collet | dd97e24 | 2016-05-30 14:05:44 +0200 | [diff] [blame] | 101 | Command line utility compatible with high compression levels |
Yann Collet | 7f6e91f | 2015-11-11 14:39:50 +0100 | [diff] [blame] | 102 | Removed zstdhc => merged into zstd |
Yann Collet | 88fcd29 | 2015-11-25 14:42:45 +0100 | [diff] [blame] | 103 | Added : ZBUFF API (see zstd_buffered.h) |
Yann Collet | 5b78d2f | 2015-11-12 15:36:05 +0100 | [diff] [blame] | 104 | Rolling buffer support |
Yann Collet | 7f6e91f | 2015-11-11 14:39:50 +0100 | [diff] [blame] | 105 | |
Yann Collet | 43e0cd5 | 2015-11-09 16:38:17 +0100 | [diff] [blame] | 106 | v0.3.6 |
| 107 | small blocks params |
| 108 | |
Yann Collet | f48e35c | 2015-11-07 01:13:31 +0100 | [diff] [blame] | 109 | v0.3.5 |
| 110 | minor generic compression improvements |
| 111 | |
Yann Collet | f12c130 | 2015-11-05 18:16:59 +0100 | [diff] [blame] | 112 | v0.3.4 |
Yann Collet | acd222c | 2015-11-06 12:39:39 +0100 | [diff] [blame] | 113 | Faster fast cLevels |
Yann Collet | f12c130 | 2015-11-05 18:16:59 +0100 | [diff] [blame] | 114 | |
Yann Collet | 3564487 | 2015-11-02 16:14:46 +0100 | [diff] [blame] | 115 | v0.3.3 |
| 116 | Small compression ratio improvement |
| 117 | |
Yann Collet | 7671f39 | 2015-11-02 12:17:39 +0100 | [diff] [blame] | 118 | v0.3.2 |
| 119 | Fixed Visual Studio |
| 120 | |
Yann Collet | 66d22b8 | 2015-11-02 02:36:10 +0100 | [diff] [blame] | 121 | v0.3.1 : |
| 122 | Small compression ratio improvement |
| 123 | |
Yann Collet | c776c46 | 2015-10-29 19:10:54 +0100 | [diff] [blame] | 124 | v0.3 |
| 125 | HC mode : compression levels 2-26 |
| 126 | |
Yann Collet | 1077bb8 | 2015-10-28 12:32:25 +0100 | [diff] [blame] | 127 | v0.2.2 |
| 128 | Fix : Visual Studio 2013 & 2015 release compilation, by Christophe Chevalier |
| 129 | |
Yann Collet | 81e49e6 | 2015-10-28 15:56:48 +0100 | [diff] [blame] | 130 | v0.2.1 |
Yann Collet | dd97e24 | 2016-05-30 14:05:44 +0200 | [diff] [blame] | 131 | Fix : Read errors, advanced fuzzer tests, by Hanno Böck |
Yann Collet | 1077bb8 | 2015-10-28 12:32:25 +0100 | [diff] [blame] | 132 | |
Yann Collet | a3befd3 | 2015-10-21 11:13:31 +0100 | [diff] [blame] | 133 | v0.2.0 |
| 134 | **Breaking format change** |
| 135 | Faster decompression speed |
| 136 | Can still decode v0.1 format |
| 137 | |
| 138 | v0.1.3 |
| 139 | fix uninitialization warning, reported by Evan Nemerson |
| 140 | |
Yann Collet | 5abd820 | 2015-08-27 03:16:04 +0100 | [diff] [blame] | 141 | v0.1.2 |
Yann Collet | a3befd3 | 2015-10-21 11:13:31 +0100 | [diff] [blame] | 142 | frame concatenation support |
Yann Collet | 5abd820 | 2015-08-27 03:16:04 +0100 | [diff] [blame] | 143 | |
| 144 | v0.1.1 |
| 145 | fix compression bug |
| 146 | detects write-flush errors |
Yann Collet | d782890 | 2016-05-09 12:28:20 +0200 | [diff] [blame] | 147 | git@github.com:Cyan4973/zstd.git |
Yann Collet | 5abd820 | 2015-08-27 03:16:04 +0100 | [diff] [blame] | 148 | v0.1.0 |
| 149 | first release |