From f165de226952582e6662821b0ae8082742640487 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 4 May 2023 10:25:28 -0700 Subject: [PATCH] Update doc comment and CHANGELOG --- CHANGELOG.md | 12 +++++++++++- src/write.rs | 3 ++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 140450b2..c6b438dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -94,4 +94,14 @@ ### Changed - - Bumped the version number in order to upload an updated README to crates.io. \ No newline at end of file + - 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. diff --git a/src/write.rs b/src/write.rs index 91f3f5ea..ef68cf50 100644 --- a/src/write.rs +++ b/src/write.rs @@ -496,7 +496,8 @@ impl ZipWriter { 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<()> { let last_file = self.files.pop().ok_or(ZipError::FileNotFound)?; self.files_by_name.remove(&last_file.file_name);