git-copilot-commit 0.3.4__tar.gz → 0.3.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-copilot-commit
3
- Version: 0.3.4
3
+ Version: 0.3.6
4
4
  Summary: Automatically generate and commit changes using copilot
5
5
  Author-email: Dheepak Krishnamurthy <1813121+kdheepak@users.noreply.github.com>
6
6
  License-File: LICENSE
@@ -248,6 +248,7 @@ def commit(
248
248
  f"[bold]{commit_message}[/]",
249
249
  title="Commit Message",
250
250
  border_style="cyan",
251
+ width=len(commit_message) + 5,
251
252
  )
252
253
  )
253
254
 
@@ -29,6 +29,7 @@ Your task is to generate a commit message in the [Conventional Commits](https://
29
29
  - Lowercase, single word or hyphenated phrase
30
30
  - Represents the affected area, module, or file
31
31
  - Use broad area if multiple related files are affected
32
+ - Only support a single scope; do not list multiple scopes or use complex paths
32
33
 
33
34
  ## `<description>`
34
35