From 15ebc03237e98cb8f7145475dd67d68a5eec44e6 Mon Sep 17 00:00:00 2001 From: Meru Patel <121121221+Meru143@users.noreply.github.com> Date: Mon, 4 May 2026 20:01:07 +0530 Subject: [PATCH] chore: release v0.5.6 --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.lock | 16 ++++++++-------- Cargo.toml | 16 ++++++++-------- crates/argus-gitpulse/CHANGELOG.md | 11 +++++++++++ crates/argus-review/CHANGELOG.md | 6 ++++++ 5 files changed, 51 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 913e1fa..f54bea8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to Argus are documented here. +## [0.5.6](https://github.com/Meru143/argus/compare/argus-ai-v0.5.5...argus-ai-v0.5.6) - 2026-05-04 + +### Added + +- *(ci)* add musl Linux build targets + +### Fixed + +- *(ci)* keep release trigger on argus-ai-v* and pin cross +- *(ci)* trigger Release on argus-core-v* tag (consistent with release-plz) +- *(ci)* use GH_PAT for release-plz release step so tag pushes trigger CI +- tighten landing page hero terminal +- tighten landing page proof layout + +### Other + +- *(ci)* tighten GH_PAT scope guidance to least-privilege + ## [0.5.5](https://github.com/Meru143/argus/compare/argus-ai-v0.5.4...argus-ai-v0.5.5) - 2026-04-04 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 9d03264..bb69af5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,7 +114,7 @@ dependencies = [ [[package]] name = "argus-ai" -version = "0.5.5" +version = "0.5.6" dependencies = [ "argus-codelens", "argus-core", @@ -140,7 +140,7 @@ dependencies = [ [[package]] name = "argus-codelens" -version = "0.5.5" +version = "0.5.6" dependencies = [ "argus-core", "argus-repomap", @@ -156,7 +156,7 @@ dependencies = [ [[package]] name = "argus-core" -version = "0.5.5" +version = "0.5.6" dependencies = [ "miette", "serde", @@ -167,7 +167,7 @@ dependencies = [ [[package]] name = "argus-difflens" -version = "0.5.5" +version = "0.5.6" dependencies = [ "argus-core", "glob", @@ -177,7 +177,7 @@ dependencies = [ [[package]] name = "argus-gitpulse" -version = "0.5.5" +version = "0.5.6" dependencies = [ "argus-core", "git2", @@ -187,7 +187,7 @@ dependencies = [ [[package]] name = "argus-mcp" -version = "0.5.5" +version = "0.5.6" dependencies = [ "argus-codelens", "argus-core", @@ -204,7 +204,7 @@ dependencies = [ [[package]] name = "argus-repomap" -version = "0.5.5" +version = "0.5.6" dependencies = [ "argus-core", "ignore", @@ -229,7 +229,7 @@ dependencies = [ [[package]] name = "argus-review" -version = "0.5.5" +version = "0.5.6" dependencies = [ "argus-codelens", "argus-core", diff --git a/Cargo.toml b/Cargo.toml index 336e6ef..d9eb01a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ [workspace.package] edition = "2021" -version = "0.5.5" +version = "0.5.6" license = "MIT" description = "AI code review platform — your coding agent shouldn't grade its own homework" repository = "https://github.com/Meru143/argus" @@ -32,13 +32,13 @@ targets = [ ] [workspace.dependencies] -argus-core = { path = "crates/argus-core", version = "0.5.5" } -argus-repomap = { path = "crates/argus-repomap", version = "0.5.5" } -argus-difflens = { path = "crates/argus-difflens", version = "0.5.5" } -argus-codelens = { path = "crates/argus-codelens", version = "0.5.5" } -argus-gitpulse = { path = "crates/argus-gitpulse", version = "0.5.5" } -argus-review = { path = "crates/argus-review", version = "0.5.5" } -argus-mcp = { path = "crates/argus-mcp", version = "0.5.5" } +argus-core = { path = "crates/argus-core", version = "0.5.6" } +argus-repomap = { path = "crates/argus-repomap", version = "0.5.6" } +argus-difflens = { path = "crates/argus-difflens", version = "0.5.6" } +argus-codelens = { path = "crates/argus-codelens", version = "0.5.6" } +argus-gitpulse = { path = "crates/argus-gitpulse", version = "0.5.6" } +argus-review = { path = "crates/argus-review", version = "0.5.6" } +argus-mcp = { path = "crates/argus-mcp", version = "0.5.6" } serde = { version = "1", features = ["derive"] } serde_json = "1" diff --git a/crates/argus-gitpulse/CHANGELOG.md b/crates/argus-gitpulse/CHANGELOG.md index 11bddf3..202b4f7 100644 --- a/crates/argus-gitpulse/CHANGELOG.md +++ b/crates/argus-gitpulse/CHANGELOG.md @@ -6,3 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.5.6](https://github.com/Meru143/argus/compare/argus-gitpulse-v0.5.5...argus-gitpulse-v0.5.6) - 2026-05-04 + +### Fixed + +- *(gitpulse)* stable author ordering by tie-breaking on email +- *(lint)* satisfy clippy 1.95 unnecessary_sort_by + +### Other + +- cargo fmt the multi-key sort_by in ownership.rs diff --git a/crates/argus-review/CHANGELOG.md b/crates/argus-review/CHANGELOG.md index 81ec2b2..110db57 100644 --- a/crates/argus-review/CHANGELOG.md +++ b/crates/argus-review/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.6](https://github.com/Meru143/argus/compare/argus-review-v0.5.5...argus-review-v0.5.6) - 2026-05-04 + +### Fixed + +- *(lint)* satisfy clippy 1.95 unnecessary_sort_by in patch.rs + ## [0.5.3](https://github.com/Meru143/argus/compare/argus-review-v0.5.2...argus-review-v0.5.3) - 2026-03-26 ### Other