We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b4dfab commit bf8fa53Copy full SHA for bf8fa53
aicodebot/__init__.py
@@ -1,3 +1,3 @@
1
-version = "0.28.1"
+version = "0.28.2"
2
AICODEBOT_NO_EMOJI = "AICodeBot"
3
AICODEBOT = f"🤖 {AICODEBOT_NO_EMOJI}"
aicodebot/commands/commit.py
@@ -19,6 +19,7 @@
19
class CommitMessage(BaseModel):
20
# Note we get better results if the message_detail is first.
21
git_message_detail: str | None = Field(
22
+ default=None,
23
description="An optional detailed explanation of the changes made in this commit,"
24
" if the summary doesn't provide enough context",
25
)
0 commit comments