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

All notable changes to Argus are documented here.

## [0.3.0](https://github.com/Meru143/argus/compare/argus-ai-v0.2.2...argus-ai-v0.3.0) - 2026-02-16

### Added

- implement learning from feedback (argus feedback)
- add PHP, Kotlin, Swift tree-sitter support (9β†’12 languages)
- implement incremental review (--incremental)
- add PR description generation (argus describe)
- self-reflection FP filtering, indicatif progress bars, 4 new languages ([#2](https://github.com/Meru143/argus/pull/2))

### Fixed

- configure gemini provider via .argus.toml instead of --provider flag

### Other

- add release-plz workflow for auto-publishing

## [0.2.2] β€” 2026-02-16

### Added
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [

[workspace.package]
edition = "2021"
version = "0.2.2"
version = "0.3.0"
license = "MIT"
description = "AI code review platform β€” your coding agent shouldn't grade its own homework"
repository = "https://github.com/Meru143/argus"
Expand All @@ -32,13 +32,13 @@ targets = [
]

[workspace.dependencies]
argus-core = { path = "crates/argus-core", version = "0.2.1" }
argus-repomap = { path = "crates/argus-repomap", version = "0.2.1" }
argus-difflens = { path = "crates/argus-difflens", version = "0.2.1" }
argus-codelens = { path = "crates/argus-codelens", version = "0.2.1" }
argus-gitpulse = { path = "crates/argus-gitpulse", version = "0.2.1" }
argus-review = { path = "crates/argus-review", version = "0.2.1" }
argus-mcp = { path = "crates/argus-mcp", version = "0.2.1" }
argus-core = { path = "crates/argus-core", version = "0.3.0" }
argus-repomap = { path = "crates/argus-repomap", version = "0.3.0" }
argus-difflens = { path = "crates/argus-difflens", version = "0.3.0" }
argus-codelens = { path = "crates/argus-codelens", version = "0.3.0" }
argus-gitpulse = { path = "crates/argus-gitpulse", version = "0.3.0" }
argus-review = { path = "crates/argus-review", version = "0.3.0" }
argus-mcp = { path = "crates/argus-mcp", version = "0.3.0" }

serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
15 changes: 15 additions & 0 deletions crates/argus-codelens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

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

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.3.0](https://github.com/Meru143/argus/compare/argus-codelens-v0.2.2...argus-codelens-v0.3.0) - 2026-02-16

### Added

- add PHP, Kotlin, Swift tree-sitter support (9β†’12 languages)
- self-reflection FP filtering, indicatif progress bars, 4 new languages ([#2](https://github.com/Meru143/argus/pull/2))
15 changes: 15 additions & 0 deletions crates/argus-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

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

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.3.0](https://github.com/Meru143/argus/compare/argus-core-v0.2.2...argus-core-v0.3.0) - 2026-02-16

### Added

- custom natural language rules via .argus/rules.md
- self-reflection FP filtering, indicatif progress bars, 4 new languages ([#2](https://github.com/Meru143/argus/pull/2))
14 changes: 14 additions & 0 deletions crates/argus-difflens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

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

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.3.0](https://github.com/Meru143/argus/compare/argus-difflens-v0.2.2...argus-difflens-v0.3.0) - 2026-02-16

### Fixed

- *(parser)* support patches without 'diff --git' header
8 changes: 8 additions & 0 deletions crates/argus-gitpulse/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

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

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]
15 changes: 15 additions & 0 deletions crates/argus-mcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

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

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.3.0](https://github.com/Meru143/argus/compare/argus-mcp-v0.2.2...argus-mcp-v0.3.0) - 2026-02-16

### Fixed

- use CARGO_PKG_VERSION in MCP server info test
- *(ci)* update mcp integration test version to 0.2.2
15 changes: 15 additions & 0 deletions crates/argus-repomap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

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

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.3.0](https://github.com/Meru143/argus/compare/argus-repomap-v0.2.2...argus-repomap-v0.3.0) - 2026-02-16

### Added

- add PHP, Kotlin, Swift tree-sitter support (9β†’12 languages)
- self-reflection FP filtering, indicatif progress bars, 4 new languages ([#2](https://github.com/Meru143/argus/pull/2))
18 changes: 18 additions & 0 deletions crates/argus-review/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

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

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.3.0](https://github.com/Meru143/argus/compare/argus-review-v0.2.2...argus-review-v0.3.0) - 2026-02-16

### Added

- implement learning from feedback (argus feedback)
- implement hotspot-aware review prioritization
- implement incremental review (--incremental)
- add PR description generation (argus describe)
- self-reflection FP filtering, indicatif progress bars, 4 new languages ([#2](https://github.com/Meru143/argus/pull/2))
Loading