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
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,31 @@

All notable changes to the `rbackup` project will be documented in this file.

## [0.7.1] - 2026-04-27

### 🐛 Fixed

- Fixed packaging error during `cargo package` / `cargo publish` caused by missing embedded asset:
- `assets/translations.json` is now correctly included in the crate
- Resolved runtime failure in `include_str!("../assets/translations.json")`

### 📦 Packaging

- Added `assets/**` to `package.include` in `Cargo.toml`
- Ensured all required runtime assets are bundled in the published crate

### 🔄 Dependencies

- Updated several dependencies to newer compatible versions

### 🧠 Notes

- No functional changes to application behavior
- No breaking changes
- This is a maintenance release focused on packaging correctness and dependency updates

---

## [0.7.0] - 2026-02-23

### ✨ Added
Expand Down
94 changes: 47 additions & 47 deletions Cargo.lock

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

17 changes: 9 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rbackup"
version = "0.7.0"
version = "0.7.1"
edition = "2024"
license = "MIT"
description = "Incremental, cross-platform and multithreaded backup tool written in Rust"
Expand All @@ -22,14 +22,15 @@ exclude = [
]
include = [
"src/**/*",
"assets/**",
"Cargo.toml",
"README.md",
"LICENSE",
"CHANGELOG.md"
]

[build-dependencies]
winresource = "0.1.23"
winresource = "0.1.31"

[package.metadata.winresource]
Icon = "assets/rbackup.ico"
Expand All @@ -40,18 +41,18 @@ identifier = "eu.umpire274.rbackup"
icon = ["assets/rbackup.png"]

[dependencies]
clap = { version = "4.5.50", features = ["derive"] }
clap = { version = "4.5.61", features = ["derive"] }
crossterm = "0.29.0"
walkdir = "2.5.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
chrono = "0.4.42"
serde_json = "1.0.149"
chrono = "0.4.44"
sys-locale = "0.3.2"
globset = "0.4.18"
serde_yaml = "0.9.33"
rayon = "1.11.0"
rayon = "1.12.0"
unicode-width = "0.2.2"

[dev-dependencies]
tempfile = "3.23.0"
filetime = "0.2.26"
tempfile = "3.27.0"
filetime = "0.2.27"
Loading
Loading