Update doc comment and CHANGELOG

This commit is contained in:
Chris Hennick 2023-05-04 10:25:28 -07:00
parent 8bc1530b2d
commit f165de2269
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74
2 changed files with 13 additions and 2 deletions

View file

@ -94,4 +94,14 @@
### Changed ### Changed
- Bumped the version number in order to upload an updated README to crates.io. - Bumped the version number in order to upload an updated README to crates.io.
## [0.7.2]
### Added
- Method `abort_file` - removes the current or most recently-finished file from the archive.
### Fixed
- Fixed a bug where a file could remain open for writing after validations failed.

View file

@ -496,7 +496,8 @@ impl<W: Write + Seek> ZipWriter<W> {
Ok(()) Ok(())
} }
/// Removes the file currently being written from the archive. /// Removes the file currently being written from the archive if there is one, or else removes
/// the file most recently written.
pub fn abort_file(&mut self) -> ZipResult<()> { pub fn abort_file(&mut self) -> ZipResult<()> {
let last_file = self.files.pop().ok_or(ZipError::FileNotFound)?; let last_file = self.files.pop().ok_or(ZipError::FileNotFound)?;
self.files_by_name.remove(&last_file.file_name); self.files_by_name.remove(&last_file.file_name);