Update Change and bump version for 1.1 release.

This commit is contained in:
Moinak Ghosh 2012-11-26 20:27:09 +05:30
parent 33c727e6e7
commit 1f0c237495
2 changed files with 17 additions and 1 deletions

View file

@ -1,3 +1,19 @@
== 1.1.0 Stable Release ==
Fix building without Libbsc support.
Add more tests for corrupted encrypted files.
Fix thread error reporting.
Update error condition tests to not truncate archive.
Fix issues with error handling.
Add new tests for out of range values and corrupted file.
Avoid CRC32 when decompressing older version archives.
Use HMAC on header and encrypted data, avoid regular digest when encrypting.
Add CRC32 header checksums in non-cryptographic mode.
Zlib optimizations. Use raw deflate streams to avoid unnecessary adler32.
Change some function signatures to improve algo init function behavior.
Fix corner case dedupe bug in error handling flow.
Bump archive version signature.
Work in progress global dedupe config loader.
Use fixed rolling-hash mask for better block size approximation.
== 1.0.0 Stable Release ==
Fix chunk flag setup when compression fails in adaptive mode.
Prevent display of non-fatal errors during compression.

View file

@ -42,7 +42,7 @@ extern "C" {
#define FLAG_DEDUP 1
#define FLAG_DEDUP_FIXED 2
#define FLAG_SINGLE_CHUNK 4
#define UTILITY_VERSION "1.0.0"
#define UTILITY_VERSION "1.1.0"
#define MASK_CRYPTO_ALG 0x30
#define MAX_LEVEL 14