Update version to 0.7 (0.6 was alpha).
This commit is contained in:
parent
eb2ee30d0d
commit
7b7007d6c5
2 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
== 0.6 Beta release ==
|
||||
== 0.7 Beta release ==
|
||||
Bump version to 0.6
|
||||
Fix handling of compression flags in adaptive mode
|
||||
Fix error handling when chunk size is too small for dedupe
|
||||
|
@ -21,6 +21,7 @@ Fix buffer sizing for LZ4.
|
|||
Fix exit condition checks in LZ4 decompression wrapper.
|
||||
Fix buffer size calculation when decompressing LZ4, Zlib and Bzip2 compressed chunks.
|
||||
Slight SSE optimization in LZ4HC.
|
||||
== 0.6 Alpha bugfix release ==
|
||||
Fix crash when algo init function returns error.
|
||||
Fix LZFX error handling.
|
||||
More updates to README.
|
||||
|
|
|
@ -39,7 +39,7 @@ extern "C" {
|
|||
#define MIN_CHUNK 2048
|
||||
#define VERSION 2
|
||||
#define FLAG_DEDUP 1
|
||||
#define UTILITY_VERSION 0.6
|
||||
#define UTILITY_VERSION 0.7
|
||||
|
||||
#define COMPRESSED 1
|
||||
#define UNCOMPRESSED 0
|
||||
|
|
Loading…
Reference in a new issue