Releases: matzefriedrich/zip-extensions-rs
Releases · matzefriedrich/zip-extensions-rs
v0.8.1
v0.8.0
Changes
- Upgrades the
zip
package reference; uses the new zip2 version - Adds
FileOptionExtension
type argument to thezip_create_from_directory_with_options
trait and implementation to address zip2 build issues - Removes the
mut
modifier from theZipWriterExtensions
to fix issues
v0.7.0
Changes
- The
create_from_directory_with_options
method now supports per-item file options. This introduces a breaking change: instead of passingFileOptions
directly, anFn
must be specified that will be called for each file and must return aFileOptions
value. - Upgraded the zip dependency to version 0.6.6.
v0.6.2
Changes
- Upgrades the zip dependency to version 0.6.2
v0.6.0
Changes
- Pass through Zip and Io errors
- Replaces all instances of unwrap()
- The
read::ZipArchiveExtensions
now returnsZipResult<PathBuf>
instead ofPathBuf
as the underlying operation can return an error. - Adds tests; extends try_is_zip method to detect different archive formats.