Skip to content
Open
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.24.9](https://github.com/tarka/xcp/compare/xcp-v0.24.8...xcp-v0.24.9) - 2026-06-23

### <!-- 3 -->Documentation

- Add SECURITY.md

### Other

- Dependency update
- Typo

## [0.24.8](https://github.com/tarka/xcp/compare/xcp-v0.24.7...xcp-v0.24.8) - 2026-05-03

### <!-- 1 -->Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ resolver = "2"
[package]
name = "xcp"
description = "xcp is a (partial) clone of the Unix `cp` command, with more user-friendly feedback and some performance optimisations. See the README for features and limitations."
version = "0.24.8"
version = "0.24.9"
rust-version = "1.88.0"
edition = "2024"

Expand Down Expand Up @@ -48,8 +48,8 @@ clap = { version = "4.6.1", features = ["derive"] }
glob = "0.3.3"
ignore = "0.4.26"
indicatif = "0.18.4"
libfs = { version = "0.9.4", path = "libfs" }
libxcp = { version = "0.24.5", path = "libxcp" }
libfs = { version = "0.9.5", path = "libfs" }
libxcp = { version = "0.24.6", path = "libxcp" }
log = "0.4.33"
num_cpus = "1.17.0"
simplelog = "0.12.2"
Expand Down
6 changes: 6 additions & 0 deletions libfs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.5](https://github.com/tarka/xcp/compare/libfs-v0.9.4...libfs-v0.9.5) - 2026-06-23

### Other

- Dependency update

## [0.9.4](https://github.com/tarka/xcp/compare/libfs-v0.9.3...libfs-v0.9.4) - 2026-05-03

### <!-- 1 -->Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion libfs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "libfs"
description = "`libfs` is a library of file and filesystem operations that is supplementary to `std::fs`"
version = "0.9.4"
version = "0.9.5"
edition = "2024"
rust-version = "1.88.0"

Expand Down
7 changes: 7 additions & 0 deletions libxcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.24.6](https://github.com/tarka/xcp/compare/libxcp-v0.24.5...libxcp-v0.24.6) - 2026-06-23

### Other

- Dependency update
- Typo

## [0.24.5](https://github.com/tarka/xcp/compare/libxcp-v0.24.4...libxcp-v0.24.5) - 2026-05-03

### <!-- 1 -->Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions libxcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "libxcp"
description = "`libxcp` is a high-level file-copy engine with support for multi-threading, fine-grained progress feedback, pluggable drivers, and `.gitignore` filters. `libxcp` provides the core functionality of `xcp`."
version = "0.24.5"
version = "0.24.6"
edition = "2024"
rust-version = "1.88.0"

Expand All @@ -25,7 +25,7 @@ blocking-threadpool = "1.0.3"
cfg-if = "1.0.4"
crossbeam-channel = "0.5.15"
ignore = "0.4.26"
libfs = { version = "0.9.4", path = "../libfs" }
libfs = { version = "0.9.5", path = "../libfs" }
log = "0.4.33"
num_cpus = "1.17.0"
regex = "1.12.4"
Expand Down
Loading