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.
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/PKG-INFO +2 -2
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/README.md +1 -1
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai.egg-info/PKG-INFO +2 -2
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/pyproject.toml +1 -1
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai/__init__.py +0 -0
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai/ai_client.py +0 -0
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai/cli.py +0 -0
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai/editor.py +0 -0
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai/exceptions.py +0 -0
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai/git_ops.py +0 -0
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai.egg-info/SOURCES.txt +0 -0
- {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
- {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
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai.egg-info/requires.txt +0 -0
- {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
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/setup.cfg +0 -0
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/tests/test_ai_client.py +0 -0
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/tests/test_cli.py +0 -0
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/tests/test_editor.py +0 -0
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/tests/test_exceptions.py +0 -0
- {git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/tests/test_generate_release_notes.py +0 -0
- {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.
|
|
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
|
|
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
|
|
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.
|
|
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
|
|
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
|
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
{git_commit_msg_ai-1.6.0 → git_commit_msg_ai-1.7.0}/git_commit_msg_ai.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|