diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 466df71..2be9c43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d9f2d1f..3ec4513 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.2.0](https://github.com/rtk-ai/grit/compare/v0.1.0...v0.2.0) (2026-03-28) + + +### Features + +* add --wait flag to claim command for retry with backoff ([13ab70b](https://github.com/rtk-ai/grit/commit/13ab70bd71887f8601f39f3d203f65c59644bf4d)), closes [#11](https://github.com/rtk-ai/grit/issues/11) +* add C#, Go, Java, C, C++, Ruby language support ([b7c68e8](https://github.com/rtk-ai/grit/commit/b7c68e8bb9aa0b5161e7683ccbc3cfa4ed42d508)) +* add C#, Go, Java, C, C++, Ruby language support ([08fef9b](https://github.com/rtk-ai/grit/commit/08fef9b250a03c398a7dbe19748043b2dede7519)) +* add PHP language support (11 languages total) ([94ec393](https://github.com/rtk-ai/grit/commit/94ec393218b457a99393797611457e2e6562466f)) +* add PHP language support (11 languages total) ([a1ccaf1](https://github.com/rtk-ai/grit/commit/a1ccaf143a36a8a8f6e64aba8dd0a5dfc0de7b16)) +* add Swift and Kotlin language support with kind detection ([bc9f1fa](https://github.com/rtk-ai/grit/commit/bc9f1fa0956949649b2f64c71316ba17cbe1522a)), closes [#14](https://github.com/rtk-ai/grit/issues/14) + + +### Bug Fixes + +* resilient parser — skip incompatible grammars instead of aborting ([552e5b7](https://github.com/rtk-ai/grit/commit/552e5b79384228fc1b53e7dae851a84e6e3e5c90)) +* skip incompatible language grammars instead of aborting scan ([6dc40de](https://github.com/rtk-ai/grit/commit/6dc40de782d912d860011dd278823d0d396114f9)) + ## 0.1.0 (2026-03-17) diff --git a/Cargo.lock b/Cargo.lock index e547d41..0d9a825 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1049,7 +1049,7 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" [[package]] name = "grit" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "aws-config", diff --git a/Cargo.toml b/Cargo.toml index aa39bfd..4f4b72b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grit" -version = "0.1.0" +version = "0.2.0" edition = "2021" description = "Coordination layer for parallel AI agents on top of git" keywords = ["git", "ai-agents", "experimental", "ast", "coordination"]