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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.6] - 2026-03-04

### Fixed
- macOS ARM64 wheel no longer embeds a dynamic path to Homebrew's liblzma; xz2 is now statically linked via `xz2/static` feature (#66)

### Changed

- Bump `maturin` from 1.12.3 to 1.12.6
- Bump `biome` from 2.3.14 to 2.4.5

## [0.2.5] - 2026-02-20

### Changed
Expand Down Expand Up @@ -196,7 +203,8 @@ 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.5...HEAD
[Unreleased]: https://github.com/bug-ops/exarch/compare/v0.2.6...HEAD
[0.2.6]: https://github.com/bug-ops/exarch/compare/v0.2.5...v0.2.6
[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
Expand Down
8 changes: 4 additions & 4 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.5"
version = "0.2.6"
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.5" }
exarch-core = { path = "crates/exarch-core", version = "0.2.6" }
anyhow = "1.0"
assert_cmd = "2.1"
bzip2 = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion crates/exarch-node/biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.5/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
Expand Down
Loading