diff --git a/.gitignore b/.gitignore index 68468a20..1b119084 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ project.lock.json test/TestArchives/Scratch .vs tools +.vscode diff --git a/FORMATS.md b/FORMATS.md index 939b56cf..7f7c5dc6 100644 --- a/FORMATS.md +++ b/FORMATS.md @@ -10,7 +10,7 @@ Writer classes allow forward-only Writing | --- | --- | --- | --- | --- | --- | | Rar | Rar | Decompress (1) | RarArchive | RarReader | N/A | | Zip (2) | None, DEFLATE, BZip2, LZMA/LZMA2, PPMd | Both | ZipArchive | ZipReader | ZipWriter | -| Tar | None, BZip2, GZip | Both | TarArchive | TarReader | TarWriter (3) | +| Tar | None, BZip2, GZip, LZip | Both | TarArchive | TarReader | TarWriter (3) | | GZip (single file) | GZip | Both | GZipArchive | GZipReader | GZipWriter | | 7Zip (4) | LZMA, LZMA2, BZip2, PPMd, BCJ, BCJ2, Deflate | Decompress | SevenZipArchive | N/A | N/A | @@ -30,3 +30,4 @@ For those who want to directly compress/decompress bits | LZMAStream | Both | | PPMdStream | Both | | ADCStream | Decompress | +| LZipStream | Decompress | diff --git a/README.md b/README.md index 534985b2..8403c6ef 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,10 @@ I'm always looking for help or ideas. Please submit code or email with ideas. Un ## Version Log +### Version 0.14.0 + +* [Support for LZip reading in for Tars](https://github.com/adamhathcock/sharpcompress/pull/191) + ### Version 0.13.1 * [Fix null password on ReaderFactory. Fix null options on SevenZipArchive](https://github.com/adamhathcock/sharpcompress/pull/188) diff --git a/src/SharpCompress/project.json b/src/SharpCompress/project.json index e39224f4..0800701b 100644 --- a/src/SharpCompress/project.json +++ b/src/SharpCompress/project.json @@ -1,5 +1,5 @@ { - "version": "0.13.1", + "version": "0.14.0", "title": "SharpCompress - Pure C# Decompression/Compression", "authors": [ "Adam Hathcock" ], "language": "en-US", @@ -16,40 +16,6 @@ "allowUnsafe": true }, "frameworks": { - "net35": { - }, - "net40": { - }, - "net45": { - }, - ".NETPortable,Version=v4.0,Profile=Profile328": { - "buildOptions": { - "define": [ "NO_FILE", "NO_CRYPTO", "SILVERLIGHT" ] - }, - "frameworkAssemblies": { - "mscorlib": { "type": "build" }, - "System": { "type": "build" }, - "System.Core": { "type": "build" } - } - }, - ".NETPortable,Version=v4.5,Profile=Profile259": { - "buildOptions": { - "define": [ "NO_FILE", "NO_CRYPTO", "SILVERLIGHT" ] - }, - "frameworkAssemblies": { - "System": { "type": "build" }, - "System.Collections": { "type": "build" }, - "System.Core": { "type": "build" }, - "System.Diagnostics.Debug": { "type": "build" }, - "System.IO": { "type": "build" }, - "System.Linq": { "type": "build" }, - "System.Linq.Expressions": { "type": "build" }, - "System.Resources.ResourceManager": { "type": "build" }, - "System.Runtime": { "type": "build" }, - "System.Runtime.Extensions": { "type": "build" }, - "System.Text.Encoding": { "type": "build" } - } - }, "netstandard1.0": { "buildOptions": { "define": [ "NO_FILE", "NO_CRYPTO" ]