Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .config/release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"crates/git-forge": "0.0.0"
"crates/git-forge": "0.0.1"
}
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.

34 changes: 34 additions & 0 deletions crates/git-forge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
2 changes: 1 addition & 1 deletion crates/git-forge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading