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.