git-copilot-commit 0.5.1__tar.gz → 0.5.2__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.
Files changed (27) hide show
  1. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/PKG-INFO +1 -1
  2. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/src/git_copilot_commit/prompts/split-commit-planner-prompt.md +0 -1
  3. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/.github/dependabot.yml +0 -0
  4. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/.github/workflows/ci.yml +0 -0
  5. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/.gitignore +0 -0
  6. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/.justfile +0 -0
  7. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/.python-version +0 -0
  8. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/LICENSE +0 -0
  9. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/README.md +0 -0
  10. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/pyproject.toml +0 -0
  11. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/src/git_copilot_commit/__init__.py +0 -0
  12. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/src/git_copilot_commit/cli.py +0 -0
  13. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/src/git_copilot_commit/git.py +0 -0
  14. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/src/git_copilot_commit/github_copilot.py +0 -0
  15. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/src/git_copilot_commit/prompts/commit-message-generator-prompt.md +0 -0
  16. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/src/git_copilot_commit/py.typed +0 -0
  17. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/src/git_copilot_commit/settings.py +0 -0
  18. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/src/git_copilot_commit/split_commits.py +0 -0
  19. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/src/git_copilot_commit/version.py +0 -0
  20. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/tests/conftest.py +0 -0
  21. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/tests/test_cli.py +0 -0
  22. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/tests/test_git.py +0 -0
  23. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/tests/test_github_copilot_utils.py +0 -0
  24. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/tests/test_settings.py +0 -0
  25. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/tests/test_split_commits.py +0 -0
  26. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/uv.lock +0 -0
  27. {git_copilot_commit-0.5.1 → git_copilot_commit-0.5.2}/vhs/demo.vhs +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-copilot-commit
3
- Version: 0.5.1
3
+ Version: 0.5.2
4
4
  Summary: Automatically generate and commit changes using GitHub Copilot
5
5
  Author-email: Dheepak Krishnamurthy <1813121+kdheepak@users.noreply.github.com>
6
6
  License-File: LICENSE
@@ -7,7 +7,6 @@ small number of coherent commits.
7
7
 
8
8
  - Produce commit groupings that keep related changes together.
9
9
  - Separate clearly unrelated changes when the staged units support it.
10
- - Prefer fewer commits when the relationship is ambiguous.
11
10
 
12
11
  ## Rules
13
12