Update CHANGELOG and doc comment

This commit is contained in:
Chris Hennick 2023-04-29 15:07:40 -07:00
parent db9866719b
commit f9bd7f8c08
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74
2 changed files with 7 additions and 2 deletions

View file

@ -31,6 +31,10 @@
## [0.6.8]
### Added
- Detects duplicate filenames.
### Fixed
- `deep_copy_file` could set incorrect Unix permissions.
@ -40,4 +44,4 @@
### Changed
- Improved performance of `deep_copy_file`: it no longer searches for the filename twice.
- Improved performance of `deep_copy_file` by using a HashMap and eliminating a redundant search.

View file

@ -494,7 +494,8 @@ impl<W: Write + Seek> ZipWriter<W> {
Ok(())
}
/// Create a file in the archive and start writing its' contents.
/// Create a file in the archive and start writing its' contents. The file must not have the
/// same name as a file already in the archive.
///
/// The data should be written using the [`Write`] implementation on this [`ZipWriter`]
pub fn start_file<S>(&mut self, name: S, mut options: FileOptions) -> ZipResult<()>