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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@ Older releases may appear in `docs/release-notes/` before they are backfilled he

- None yet.

## v0.6.0-alpha.2

### Changed

- Split inferred Rust validation into ordered validator outcomes:
- `cargo fmt --check`
- `cargo test`
- `cargo clippy -- -D warnings`
- Validator steps now record pass, fail, or skipped outcomes.
- Rust validation stops after the first failed validator and marks later validators as skipped.
- Preserved the existing one-repair budget, shell/gate/audit path, and bounded continuation behavior.

### Release process

- Updated crate metadata to `0.6.0-alpha.2`.
- Release readiness now supports validating that a release tag matches `Cargo.toml` package metadata.

## v0.5.0 - 2026-03-14

`v0.5.0` is a major runtime and architecture hardening release. It refactors large parts of the agent/runtime/tooling codebase into smaller focused modules, strengthens runtime-owned completion and validation behavior for coding tasks, and expands LocalAgent's coding/eval workflow with broader benchmark coverage, local-model investigation assets, and new tooling integrations.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "localagent"
version = "0.5.0"
version = "0.6.0-alpha.2"
edition = "2021"
default-run = "localagent"
repository = "https://github.com/CalvinSturm/LocalAgent"
Expand Down
1 change: 1 addition & 0 deletions docs/release-notes/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Release Notes

- [v0.6.0-alpha.2](RELEASE_NOTES_v0.6.0-alpha.2.md)
- [v0.5.0](RELEASE_NOTES_v0.5.0.md)
- [v0.4.0](RELEASE_NOTES_v0.4.0.md)
- [v0.3.1](RELEASE_NOTES_v0.3.1.md)
Expand Down
18 changes: 18 additions & 0 deletions docs/release-notes/RELEASE_NOTES_v0.6.0-alpha.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# LocalAgent v0.6.0-alpha.2 Release Notes

Release date: 2026-07-04

## Highlights

- Split inferred Rust validation into ordered validator outcomes:
- `cargo fmt --check`
- `cargo test`
- `cargo clippy -- -D warnings`
- Validator steps now record pass, fail, or skipped outcomes.
- Rust validation stops after the first failed validator and marks later validators as skipped.
- Preserved the existing one-repair budget, shell/gate/audit path, and bounded continuation behavior.

## Release Process

- Updated crate metadata to `0.6.0-alpha.2`.
- Release readiness now supports validating that a release tag matches `Cargo.toml` package metadata.
Loading