diff --git a/README.md b/README.md index a8ad5858..797bb08c 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,15 @@ I'm always looking for help or ideas. Please submit code or email with ideas. Un ## Version Log +### Version 0.16.0 + +* Breaking - [Progress Event Tracking rethink](https://github.com/adamhathcock/sharpcompress/pull/226) +* Update to VS2017 - [VS2017](https://github.com/adamhathcock/sharpcompress/pull/231) - Framework targets have been changed. +* New - [Add Zip64 writing](https://github.com/adamhathcock/sharpcompress/pull/211) +* [Fix invalid/mismatching Zip version flags.](https://github.com/adamhathcock/sharpcompress/issues/164) - This allows nuget/System.IO.Packaging to read zip files generated by SharpCompress +* [Fix 7Zip directory hiding](https://github.com/adamhathcock/sharpcompress/pull/215/files) +* [Verify RAR CRC headers](https://github.com/adamhathcock/sharpcompress/pull/220) + ### Version 0.15.2 * [Fix invalid headers](https://github.com/adamhathcock/sharpcompress/pull/210) - fixes an issue creating large-ish zip archives that was introduced with zip64 reading. diff --git a/build.cake b/build.cake index 0621c813..e501fbee 100644 --- a/build.cake +++ b/build.cake @@ -45,8 +45,7 @@ Task("Default") Task("RunTests") .IsDependentOn("Restore") - .IsDependentOn("Build") - .IsDependentOn("Test"); + .IsDependentOn("Build"); RunTarget(target); \ No newline at end of file