git-commit-msg-ai 1.6.0__tar.gz → 1.7.0__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 (22) hide show
  1. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/PKG-INFO +2 -2
  2. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/README.md +1 -1
  3. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai.egg-info/PKG-INFO +2 -2
  4. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/pyproject.toml +1 -1
  5. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai/__init__.py +0 -0
  6. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai/ai_client.py +0 -0
  7. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai/cli.py +0 -0
  8. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai/editor.py +0 -0
  9. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai/exceptions.py +0 -0
  10. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai/git_ops.py +0 -0
  11. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai.egg-info/SOURCES.txt +0 -0
  12. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai.egg-info/dependency_links.txt +0 -0
  13. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai.egg-info/entry_points.txt +0 -0
  14. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai.egg-info/requires.txt +0 -0
  15. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai.egg-info/top_level.txt +0 -0
  16. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/setup.cfg +0 -0
  17. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/tests/test_ai_client.py +0 -0
  18. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/tests/test_cli.py +0 -0
  19. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/tests/test_editor.py +0 -0
  20. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/tests/test_exceptions.py +0 -0
  21. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/tests/test_generate_release_notes.py +0 -0
  22. {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/tests/test_git_ops.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-commit-msg-ai
3
- Version: 1.6.0
3
+ Version: 1.7.0
4
4
  Summary: AI-powered git commit message generator following Conventional Commits
5
5
  License-Expression: MIT
6
6
  Requires-Python: >=3.10
@@ -133,7 +133,7 @@ Pushing a version tag (e.g. `v1.5.2`) triggers the CD pipeline:
133
133
  git add pyproject.toml
134
134
  git commit -m "chore: bump version to 1.5.2"
135
135
  git push origin main
136
- # 3. Tag and push this triggers the CD pipeline
136
+ # 3. Tag and push - this triggers the CD pipeline
137
137
  git tag v1.5.2
138
138
  git push origin v1.5.2
139
139
  ```
@@ -117,7 +117,7 @@ Pushing a version tag (e.g. `v1.5.2`) triggers the CD pipeline:
117
117
  git add pyproject.toml
118
118
  git commit -m "chore: bump version to 1.5.2"
119
119
  git push origin main
120
- # 3. Tag and push this triggers the CD pipeline
120
+ # 3. Tag and push - this triggers the CD pipeline
121
121
  git tag v1.5.2
122
122
  git push origin v1.5.2
123
123
  ```
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-commit-msg-ai
3
- Version: 1.6.0
3
+ Version: 1.7.0
4
4
  Summary: AI-powered git commit message generator following Conventional Commits
5
5
  License-Expression: MIT
6
6
  Requires-Python: >=3.10
@@ -133,7 +133,7 @@ Pushing a version tag (e.g. `v1.5.2`) triggers the CD pipeline:
133
133
  git add pyproject.toml
134
134
  git commit -m "chore: bump version to 1.5.2"
135
135
  git push origin main
136
- # 3. Tag and push this triggers the CD pipeline
136
+ # 3. Tag and push - this triggers the CD pipeline
137
137
  git tag v1.5.2
138
138
  git push origin v1.5.2
139
139
  ```
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "git-commit-msg-ai"
7
- version = "1.6.0"
7
+ version = "1.7.0"
8
8
  description = "AI-powered git commit message generator following Conventional Commits"
9
9
  readme = "README.md"
10
10
  license = "MIT"