Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.5] - 2026-02-20

### Changed
- Upgrade `zip` dependency from 7.x to 8.0 (breaking: removed deprecated `DateTime::to_time()`)
- Upgrade `tempfile` dependency from 3.24 to 3.25
- Replace deprecated `DateTime::to_time()` with `time::PrimitiveDateTime` conversion for ZIP timestamps
- Add `time` as direct dependency (previously transitive via `zip`)
- Bump `pyo3` from 0.28.1 to 0.28.2

## [0.2.4] - 2026-02-06

Expand Down Expand Up @@ -190,7 +193,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- 64KB reusable copy buffers
- LRU cache for symlink target resolution

[Unreleased]: https://github.com/bug-ops/exarch/compare/v0.2.3...HEAD
[Unreleased]: https://github.com/bug-ops/exarch/compare/v0.2.5...HEAD
[0.2.5]: https://github.com/bug-ops/exarch/compare/v0.2.4...v0.2.5
[0.2.4]: https://github.com/bug-ops/exarch/compare/v0.2.3...v0.2.4
[0.2.3]: https://github.com/bug-ops/exarch/compare/v0.2.2...v0.2.3
[0.2.2]: https://github.com/bug-ops/exarch/compare/v0.2.1...v0.2.2
[0.2.1]: https://github.com/bug-ops/exarch/compare/v0.2.0...v0.2.1
Expand Down
111 changes: 52 additions & 59 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
]

[workspace.package]
version = "0.2.4"
version = "0.2.5"
authors = ["Exarch Contributors"]
edition = "2024"
rust-version = "1.89.0"
Expand All @@ -19,7 +19,7 @@ keywords = ["archive", "extraction", "security", "tar", "zip"]
categories = ["compression", "filesystem"]

[workspace.dependencies]
exarch-core = { path = "crates/exarch-core", version = "0.2.4" }
exarch-core = { path = "crates/exarch-core", version = "0.2.5" }
anyhow = "1.0"
assert_cmd = "2.1"
bzip2 = "0.6"
Expand Down
Loading