diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9049e2f..4c313f9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.3.1" + ".": "1.4.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8752b1d..4335172 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.4.0](https://github.com/Artmann/roe/compare/roe-v1.3.1...roe-v1.4.0) (2026-08-02) + + +### Features + +* **config:** Add per-analysis ignore globs for dupes, health, and dead-code ([3443072](https://github.com/Artmann/roe/commit/34430729a3deb61082ae9b97fe368b230bc53c71)), closes [#32](https://github.com/Artmann/roe/issues/32) +* **dupes:** Read thresholds and mode from the config file ([6c0053c](https://github.com/Artmann/roe/commit/6c0053c2e88ae542c888fffdc6b42103a56bcb45)), closes [#31](https://github.com/Artmann/roe/issues/31) + ## [1.3.1](https://github.com/Artmann/roe/compare/roe-v1.3.0...roe-v1.3.1) (2026-07-27) diff --git a/Cargo.lock b/Cargo.lock index 96a93f0..3e8990d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1682,7 +1682,7 @@ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" [[package]] name = "roe" -version = "1.3.1" +version = "1.4.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index adfb070..b106b78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "roe" -version = "1.3.1" +version = "1.4.0" edition = "2024" description = "Codebase intelligence for C# — dead code, duplicate, and health checks" license = "MIT"