diff --git a/FORMATS.md b/FORMATS.md index 7f7c5dc6..d5f8a2b3 100644 --- a/FORMATS.md +++ b/FORMATS.md @@ -15,7 +15,7 @@ Writer classes allow forward-only Writing | 7Zip (4) | LZMA, LZMA2, BZip2, PPMd, BCJ, BCJ2, Deflate | Decompress | SevenZipArchive | N/A | N/A | 1. SOLID Rars are only supported in the RarReader API. - 2. Zip format supports pkware and WinzipAES encryption. However, encrypted LZMA is not supported. + 2. Zip format supports pkware and WinzipAES encryption. However, encrypted LZMA is not supported. Zip64 reading is supported with the Archive API 3. The Tar format requires a file size in the header. If no size is specified to the TarWriter and the stream is not seekable, then an exception will be thrown. 4. The 7Zip format doesn't allow for reading as a forward-only stream so 7Zip is only supported through the Archive API diff --git a/README.md b/README.md index a69f9285..900d156f 100644 --- a/README.md +++ b/README.md @@ -25,12 +25,16 @@ I'm always looking for help or ideas. Please submit code or email with ideas. Un * RAR 5 support * 7Zip writing -* Zip64 +* Zip64 (Need writing and extend Reading) * Multi-volume Zip support. * RAR5 support ## Version Log +### Version 0.15.0 + +* [Add zip64 support for ZipArchive extraction](https://github.com/adamhathcock/sharpcompress/pull/205) + ### Version 0.14.1 * [.NET Assemblies aren't strong named](https://github.com/adamhathcock/sharpcompress/issues/158) @@ -123,8 +127,6 @@ I'm always looking for help or ideas. Please submit code or email with ideas. Un * Embedded some BouncyCastle crypto classes to allow RAR Decryption and Winzip AES Decryption in Portable and Windows Store DLLs * Built in Release (I think) -Some Help/Discussion: https://sharpcompress.codeplex.com/discussions - 7Zip implementation based on: https://code.google.com/p/managed-lzma/ LICENSE diff --git a/appveyor.yml b/appveyor.yml index 1b7dde1f..058121f1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: '0.13.{build}' +version: '0.15.{build}' init: - git config --global core.autocrlf true diff --git a/src/SharpCompress/project.json b/src/SharpCompress/project.json index c306b88a..bebb7dcf 100644 --- a/src/SharpCompress/project.json +++ b/src/SharpCompress/project.json @@ -1,5 +1,5 @@ { - "version": "0.14.1", + "version": "0.15.0", "title": "SharpCompress - Pure C# Decompression/Compression", "authors": [ "Adam Hathcock" ], "language": "en-US",