From f74061a3fba464b01d131c694f4eb441f26033da Mon Sep 17 00:00:00 2001 From: "robot-yavanna[bot]" <264059672+robot-yavanna[bot]@users.noreply.github.com> Date: Sat, 14 Mar 2026 03:52:59 +0000 Subject: [PATCH] release: ` git-forge` v0.0.1 --- .config/release-please-manifest.json | 2 +- Cargo.lock | 2 +- crates/git-forge/CHANGELOG.md | 34 ++++++++++++++++++++++++++++ crates/git-forge/Cargo.toml | 2 +- 4 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 crates/git-forge/CHANGELOG.md diff --git a/.config/release-please-manifest.json b/.config/release-please-manifest.json index 7600ce6..7291128 100644 --- a/.config/release-please-manifest.json +++ b/.config/release-please-manifest.json @@ -1,3 +1,3 @@ { - "crates/git-forge": "0.0.0" + "crates/git-forge": "0.0.1" } diff --git a/Cargo.lock b/Cargo.lock index d599e93..b3e075a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -172,7 +172,7 @@ dependencies = [ [[package]] name = "git-forge" -version = "0.0.0" +version = "0.0.1" dependencies = [ "clap", "clap_mangen", diff --git a/crates/git-forge/CHANGELOG.md b/crates/git-forge/CHANGELOG.md new file mode 100644 index 0000000..6eb0dab --- /dev/null +++ b/crates/git-forge/CHANGELOG.md @@ -0,0 +1,34 @@ +# Changelog + +## 0.0.1 (2026-03-14) + + +### Features + +* Add access module with Contributors and AccessPolicy traits ([6b84719](https://github.com/git-ents/git-forge/commit/6b847194b510d3233b2aa7a05bcb1d5fad69e42c)) +* Add annotations module with Comments and Approvals traits ([84d4127](https://github.com/git-ents/git-forge/commit/84d41274f3822f021b4de096d2d28d8b8cd41b6a)) +* Add checks module with CheckDefinitions and CheckResults traits ([60f7c91](https://github.com/git-ents/git-forge/commit/60f7c9153c9314054f2b3d43dc54f5ce387d12ec)) +* Add counters module with EntityCounter trait ([3e877df](https://github.com/git-ents/git-forge/commit/3e877df4715b7d9f96f233d0339c2c3ca36f2fea)) +* Add enforcement module with MergeGate and Queue traits ([ff2c213](https://github.com/git-ents/git-forge/commit/ff2c21352d3d2cfde9c009d8e89a90d15a4f4fe0)) +* Add entities module with Issues and Reviews traits ([6875053](https://github.com/git-ents/git-forge/commit/6875053f277423809e3f4c81ae3fe4b3e33a59fa)) +* Add man generation ([ea319f1](https://github.com/git-ents/git-forge/commit/ea319f130a635388eeca1d6b19928b0fc779a829)) +* Add releases module with Releases trait ([4c7d1db](https://github.com/git-ents/git-forge/commit/4c7d1db18343f271961ea2a3fc3e2a5eb10c6195)) +* Scaffold check command with new/edit/list/status/show verbs ([13b95d4](https://github.com/git-ents/git-forge/commit/13b95d4464b8a620b452f5edec62c8407af4adfa)) +* Scaffold check exe with new/edit/list/status/show stubs ([90ad30d](https://github.com/git-ents/git-forge/commit/90ad30de5df8209966e5d668359baafc6f93a18c)) +* Scaffold issue command with new/edit/list/status/show verbs ([07bd435](https://github.com/git-ents/git-forge/commit/07bd435b74545f03932b704f74e5ea3999e8a082)) +* Scaffold issue exe with new/edit/list/status/show stubs ([82987ba](https://github.com/git-ents/git-forge/commit/82987ba0bc26458b4a0a64da5a1d1cc29277f19e)) +* Scaffold release command with new/edit/list/status/show verbs ([ff26c6c](https://github.com/git-ents/git-forge/commit/ff26c6cc99022f74e03028303ec82d36ed1c60f4)) +* Scaffold release exe with new/edit/list/status/show stubs ([532f560](https://github.com/git-ents/git-forge/commit/532f5607ec0824d84f5b0fcd8ff6c953d4d72c82)) +* Scaffold review command with new/edit/list/status/show verbs ([7cfa287](https://github.com/git-ents/git-forge/commit/7cfa2872612bc871a3074b09164882432d94d2a7)) +* Scaffold review exe with new/edit/list/status/show stubs ([9c192c8](https://github.com/git-ents/git-forge/commit/9c192c85cb57a6e9063ab1d2c62ffde255c4b3a2)) + + +### Bug Fixes + +* Add missing doc comments on CLI subcommand fields ([f7459a7](https://github.com/git-ents/git-forge/commit/f7459a77c50c6c9c2902822e193848c12ee6ba2b)) +* Set proper Crate versions ([c4923ec](https://github.com/git-ents/git-forge/commit/c4923ec0af779da901d6a5188fb2da186027e1c0)) + + +### Miscellaneous Chores + +* Trigger initial release ([b199406](https://github.com/git-ents/git-forge/commit/b19940683fde969fd3f429145e284570eec7f054)) diff --git a/crates/git-forge/Cargo.toml b/crates/git-forge/Cargo.toml index fbd6916..32e9abc 100644 --- a/crates/git-forge/Cargo.toml +++ b/crates/git-forge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-forge" -version = "0.0.0" +version = "0.0.1" edition.workspace = true publish.workspace = true license.workspace = true