chore: release
Signed-off-by: Chris <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
parent
629707c060
commit
62ed5dc61a
2 changed files with 23 additions and 1 deletions
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,5 +1,27 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.1.4](https://github.com/zip-rs/zip2/compare/v1.1.3...v1.1.4) - 2024-05-04
|
||||||
|
|
||||||
|
### <!-- 1 -->🐛 Bug Fixes
|
||||||
|
- Build was failing with bzip2 enabled
|
||||||
|
- use is_dir in more places where Windows paths might be handled incorrectly
|
||||||
|
|
||||||
|
### <!-- 4 -->⚡ Performance
|
||||||
|
- Quick filter for paths that contain "/../" or "/./" or start with "./" or "../"
|
||||||
|
- Fast handling for separator-free paths
|
||||||
|
- Speed up logic if main separator isn't '/'
|
||||||
|
- Drop `normalized_components` slightly sooner when not using it
|
||||||
|
- Speed up `path_to_string` in cases where the path is already in the proper format
|
||||||
|
|
||||||
|
### <!-- 7 -->⚙️ Miscellaneous Tasks
|
||||||
|
- Refactor: can short-circuit handling of paths that start with MAIN_SEPARATOR, no matter what MAIN_SEPARATOR is
|
||||||
|
- Bug fix: non-canonical path detection when MAIN_SEPARATOR is not slash or occurs twice in a row
|
||||||
|
- Bug fix: must recreate if . or .. is a path element
|
||||||
|
- Bug fix
|
||||||
|
|
||||||
|
### <!-- 9 -->◀️ Revert
|
||||||
|
- [#58](https://github.com/zip-rs/zip2/pull/58) (partial): `bzip2-rs` can't replace `bzip2` because it's decompress-only
|
||||||
|
|
||||||
## [1.1.3](https://github.com/zip-rs/zip2/compare/v1.1.2...v1.1.3) - 2024-04-30
|
## [1.1.3](https://github.com/zip-rs/zip2/compare/v1.1.2...v1.1.3) - 2024-04-30
|
||||||
|
|
||||||
### <!-- 1 -->🐛 Bug Fixes
|
### <!-- 1 -->🐛 Bug Fixes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zip"
|
name = "zip"
|
||||||
version = "1.1.3"
|
version = "1.1.4"
|
||||||
authors = [
|
authors = [
|
||||||
"Mathijs van de Nes <git@mathijs.vd-nes.nl>",
|
"Mathijs van de Nes <git@mathijs.vd-nes.nl>",
|
||||||
"Marli Frost <marli@frost.red>",
|
"Marli Frost <marli@frost.red>",
|
||||||
|
|
Loading…
Add table
Reference in a new issue