git-commit-msg-ai 2.1.1__tar.gz → 2.1.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 (25) hide show
  1. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/PKG-INFO +18 -7
  2. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/README.md +13 -6
  3. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai.egg-info/PKG-INFO +18 -7
  4. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/pyproject.toml +7 -1
  5. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/LICENSE +0 -0
  6. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai/__init__.py +0 -0
  7. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai/ai_client.py +0 -0
  8. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai/cli.py +0 -0
  9. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai/config.py +0 -0
  10. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai/editor.py +0 -0
  11. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai/exceptions.py +0 -0
  12. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai/git_ops.py +0 -0
  13. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai.egg-info/SOURCES.txt +0 -0
  14. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai.egg-info/dependency_links.txt +0 -0
  15. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai.egg-info/entry_points.txt +0 -0
  16. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai.egg-info/requires.txt +0 -0
  17. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/git_commit_msg_ai.egg-info/top_level.txt +0 -0
  18. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/setup.cfg +0 -0
  19. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/tests/test_ai_client.py +0 -0
  20. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/tests/test_cli.py +0 -0
  21. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/tests/test_config.py +0 -0
  22. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/tests/test_editor.py +0 -0
  23. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/tests/test_exceptions.py +0 -0
  24. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/tests/test_generate_release_notes.py +0 -0
  25. {git_commit_msg_ai-2.1.1 → git_commit_msg_ai-2.1.2}/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: 2.1.1
3
+ Version: 2.1.2
4
4
  Summary: AI-powered git commit message generator following Conventional Commits
5
5
  License: MIT License
6
6
 
@@ -24,6 +24,10 @@ License: MIT License
24
24
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
25
  SOFTWARE.
26
26
 
27
+ Classifier: Programming Language :: Python :: 3
28
+ Classifier: Programming Language :: Python :: 3.14
29
+ Classifier: License :: OSI Approved :: MIT License
30
+ Classifier: Operating System :: OS Independent
27
31
  Requires-Python: >=3.14
28
32
  Description-Content-Type: text/markdown
29
33
  License-File: LICENSE
@@ -41,6 +45,12 @@ Dynamic: license-file
41
45
 
42
46
  AI-powered git commit message generator that follows the [Conventional Commits](https://www.conventionalcommits.org/) specification.
43
47
 
48
+ [![CI](https://github.com/ankit-d-joshi/git-commit-msg-ai/actions/workflows/ci.yml/badge.svg)](https://github.com/ankit-d-joshi/git-commit-msg-ai/actions/workflows/ci.yml)
49
+ [![PyPI](https://img.shields.io/pypi/v/git-commit-msg-ai)](https://pypi.org/project/git-commit-msg-ai/)
50
+ [![Python](https://img.shields.io/pypi/pyversions/git-commit-msg-ai)](https://pypi.org/project/git-commit-msg-ai/)
51
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
52
+ [![Downloads](https://static.pepy.tech/badge/git-commit-msg-ai)](https://pepy.tech/project/git-commit-msg-ai)
53
+
44
54
  ## Prerequisites
45
55
 
46
56
  - Python 3.14+
@@ -81,9 +91,10 @@ pip install -e ".[dev]"
81
91
  After activation the `git-commit-msg-ai` entry-point is on your PATH. You can also run the dev toolchain:
82
92
 
83
93
  ```sh
84
- pytest # run tests with coverage
85
- ruff check . # lint
86
- mypy . # type-check
94
+ pytest # run tests with coverage
95
+ ruff check . # lint
96
+ ruff format --check . # format check
97
+ mypy . # type-check
87
98
  ```
88
99
 
89
100
  ## Installation
@@ -197,11 +208,11 @@ Pushing a version tag (e.g. `v1.5.2`) triggers the CD pipeline:
197
208
  # 1. Bump the version in pyproject.toml
198
209
  # 2. Commit and push
199
210
  git add pyproject.toml
200
- git commit -m "chore: bump version to 1.5.2"
211
+ git commit -m "chore: bump version to 2.2.0"
201
212
  git push origin main
202
213
  # 3. Tag and push - this triggers the CD pipeline
203
- git tag v1.5.2
204
- git push origin v1.5.2
214
+ git tag v2.2.0
215
+ git push origin v2.2.0
205
216
  ```
206
217
 
207
218
  ## Debugging
@@ -2,6 +2,12 @@
2
2
 
3
3
  AI-powered git commit message generator that follows the [Conventional Commits](https://www.conventionalcommits.org/) specification.
4
4
 
5
+ [![CI](https://github.com/ankit-d-joshi/git-commit-msg-ai/actions/workflows/ci.yml/badge.svg)](https://github.com/ankit-d-joshi/git-commit-msg-ai/actions/workflows/ci.yml)
6
+ [![PyPI](https://img.shields.io/pypi/v/git-commit-msg-ai)](https://pypi.org/project/git-commit-msg-ai/)
7
+ [![Python](https://img.shields.io/pypi/pyversions/git-commit-msg-ai)](https://pypi.org/project/git-commit-msg-ai/)
8
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
9
+ [![Downloads](https://static.pepy.tech/badge/git-commit-msg-ai)](https://pepy.tech/project/git-commit-msg-ai)
10
+
5
11
  ## Prerequisites
6
12
 
7
13
  - Python 3.14+
@@ -42,9 +48,10 @@ pip install -e ".[dev]"
42
48
  After activation the `git-commit-msg-ai` entry-point is on your PATH. You can also run the dev toolchain:
43
49
 
44
50
  ```sh
45
- pytest # run tests with coverage
46
- ruff check . # lint
47
- mypy . # type-check
51
+ pytest # run tests with coverage
52
+ ruff check . # lint
53
+ ruff format --check . # format check
54
+ mypy . # type-check
48
55
  ```
49
56
 
50
57
  ## Installation
@@ -158,11 +165,11 @@ Pushing a version tag (e.g. `v1.5.2`) triggers the CD pipeline:
158
165
  # 1. Bump the version in pyproject.toml
159
166
  # 2. Commit and push
160
167
  git add pyproject.toml
161
- git commit -m "chore: bump version to 1.5.2"
168
+ git commit -m "chore: bump version to 2.2.0"
162
169
  git push origin main
163
170
  # 3. Tag and push - this triggers the CD pipeline
164
- git tag v1.5.2
165
- git push origin v1.5.2
171
+ git tag v2.2.0
172
+ git push origin v2.2.0
166
173
  ```
167
174
 
168
175
  ## Debugging
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-commit-msg-ai
3
- Version: 2.1.1
3
+ Version: 2.1.2
4
4
  Summary: AI-powered git commit message generator following Conventional Commits
5
5
  License: MIT License
6
6
 
@@ -24,6 +24,10 @@ License: MIT License
24
24
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
25
  SOFTWARE.
26
26
 
27
+ Classifier: Programming Language :: Python :: 3
28
+ Classifier: Programming Language :: Python :: 3.14
29
+ Classifier: License :: OSI Approved :: MIT License
30
+ Classifier: Operating System :: OS Independent
27
31
  Requires-Python: >=3.14
28
32
  Description-Content-Type: text/markdown
29
33
  License-File: LICENSE
@@ -41,6 +45,12 @@ Dynamic: license-file
41
45
 
42
46
  AI-powered git commit message generator that follows the [Conventional Commits](https://www.conventionalcommits.org/) specification.
43
47
 
48
+ [![CI](https://github.com/ankit-d-joshi/git-commit-msg-ai/actions/workflows/ci.yml/badge.svg)](https://github.com/ankit-d-joshi/git-commit-msg-ai/actions/workflows/ci.yml)
49
+ [![PyPI](https://img.shields.io/pypi/v/git-commit-msg-ai)](https://pypi.org/project/git-commit-msg-ai/)
50
+ [![Python](https://img.shields.io/pypi/pyversions/git-commit-msg-ai)](https://pypi.org/project/git-commit-msg-ai/)
51
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
52
+ [![Downloads](https://static.pepy.tech/badge/git-commit-msg-ai)](https://pepy.tech/project/git-commit-msg-ai)
53
+
44
54
  ## Prerequisites
45
55
 
46
56
  - Python 3.14+
@@ -81,9 +91,10 @@ pip install -e ".[dev]"
81
91
  After activation the `git-commit-msg-ai` entry-point is on your PATH. You can also run the dev toolchain:
82
92
 
83
93
  ```sh
84
- pytest # run tests with coverage
85
- ruff check . # lint
86
- mypy . # type-check
94
+ pytest # run tests with coverage
95
+ ruff check . # lint
96
+ ruff format --check . # format check
97
+ mypy . # type-check
87
98
  ```
88
99
 
89
100
  ## Installation
@@ -197,11 +208,11 @@ Pushing a version tag (e.g. `v1.5.2`) triggers the CD pipeline:
197
208
  # 1. Bump the version in pyproject.toml
198
209
  # 2. Commit and push
199
210
  git add pyproject.toml
200
- git commit -m "chore: bump version to 1.5.2"
211
+ git commit -m "chore: bump version to 2.2.0"
201
212
  git push origin main
202
213
  # 3. Tag and push - this triggers the CD pipeline
203
- git tag v1.5.2
204
- git push origin v1.5.2
214
+ git tag v2.2.0
215
+ git push origin v2.2.0
205
216
  ```
206
217
 
207
218
  ## Debugging
@@ -4,11 +4,17 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "git-commit-msg-ai"
7
- version = "2.1.1"
7
+ version = "2.1.2"
8
8
  description = "AI-powered git commit message generator following Conventional Commits"
9
9
  readme = "README.md"
10
10
  license = {file = "LICENSE"}
11
11
  requires-python = ">=3.14"
12
+ classifiers = [
13
+ "Programming Language :: Python :: 3",
14
+ "Programming Language :: Python :: 3.14",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ ]
12
18
  dependencies = ["anthropic"]
13
19
 
14
20
  [project.scripts]