From 03ab8b5abde9db9f22d9495954a8965b99de888f Mon Sep 17 00:00:00 2001 From: 44r0n7 <44r0n7+gitea@pm.me> Date: Tue, 30 Dec 2025 11:37:13 -0500 Subject: [PATCH] Add release metadata and changelog --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 5 +++++ README.md | 4 ++++ 3 files changed, 19 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0dd05e6 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +## 0.1.0 - 2025-12-30 +Initial release. + +- Radarr-style naming for movies +- TMDb/OMDb providers with caching +- Optional Ollama LLM integration +- Safe defaults (copy, skip on collision) +- Reports (text/json/csv) + sidecars support diff --git a/Cargo.toml b/Cargo.toml index cf2bf5f..c32a692 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,11 @@ name = "mov-renamarr" version = "0.1.0" edition = "2024" license = "MIT" +description = "Fast, safe CLI to rename movie files into Radarr-compatible names." +readme = "README.md" +repository = "https://git.44r0n.cc/44r0n7/mov-renamarr.git" +keywords = ["media", "movies", "rename", "radarr", "cli"] +categories = ["command-line-utilities", "filesystem"] [dependencies] anyhow = "1.0" diff --git a/README.md b/README.md index 9e0b321..0d42ee8 100644 --- a/README.md +++ b/README.md @@ -120,3 +120,7 @@ cargo test ## License :scroll: MIT (see `LICENSE`). + +## Release :bookmark: +- Version: `0.1.0` +- See `CHANGELOG.md` for details.