enhanced-git 1.0.0__tar.gz → 1.0.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 (28) hide show
  1. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/.github/workflows/release.yml +2 -0
  2. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/PKG-INFO +3 -3
  3. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/README.md +2 -2
  4. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/pyproject.toml +2 -1
  5. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/.gitai.toml +0 -0
  6. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/.github/workflows/ci.yml +0 -0
  7. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/.gitignore +0 -0
  8. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/.pre-commit-config.yaml +0 -0
  9. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/CONTRIBUTING.md +0 -0
  10. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/LICENSE +0 -0
  11. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/Makefile +0 -0
  12. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/__init__.py +0 -0
  13. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/changelog.py +0 -0
  14. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/cli.py +0 -0
  15. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/commit.py +0 -0
  16. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/config.py +0 -0
  17. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/constants.py +0 -0
  18. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/diff.py +0 -0
  19. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/hook.py +0 -0
  20. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/providers/__init__.py +0 -0
  21. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/providers/base.py +0 -0
  22. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/providers/ollama_provider.py +0 -0
  23. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/providers/openai_provider.py +0 -0
  24. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/gitai/util.py +0 -0
  25. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/tests/__init__.py +0 -0
  26. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/tests/test_changelog.py +0 -0
  27. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/tests/test_diff.py +0 -0
  28. {enhanced_git-1.0.0 → enhanced_git-1.0.2}/tests/test_hook_integration.py +0 -0
@@ -7,6 +7,8 @@ on:
7
7
  jobs:
8
8
  deploy:
9
9
  runs-on: ubuntu-latest
10
+ permissions:
11
+ id-token: write
10
12
 
11
13
  steps:
12
14
  - uses: actions/checkout@v4
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: enhanced-git
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: Generate Conventional Commit messages and changelog sections using AI
5
5
  Project-URL: Homepage, https://github.com/mxzahid/git-ai
6
6
  Project-URL: Repository, https://github.com/mxzahid/git-ai
@@ -63,10 +63,10 @@ Use Local models with Ollama or OpenAI, gracefully degrades when no AI is availa
63
63
 
64
64
  ```bash
65
65
  # using pipx (recommended)
66
- pipx install git-ai
66
+ pipx install enhanced-git
67
67
 
68
68
  # or using pip
69
- pip install git-ai
69
+ pip install enhanced-git
70
70
  ```
71
71
 
72
72
  ### Setup (Optional AI Integration)
@@ -22,10 +22,10 @@ Use Local models with Ollama or OpenAI, gracefully degrades when no AI is availa
22
22
 
23
23
  ```bash
24
24
  # using pipx (recommended)
25
- pipx install git-ai
25
+ pipx install enhanced-git
26
26
 
27
27
  # or using pip
28
- pip install git-ai
28
+ pip install enhanced-git
29
29
  ```
30
30
 
31
31
  ### Setup (Optional AI Integration)
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "enhanced-git"
7
- version = "1.0.0"
7
+ version = "1.0.2"
8
8
  description = "Generate Conventional Commit messages and changelog sections using AI"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -52,6 +52,7 @@ docs = [
52
52
 
53
53
  [project.scripts]
54
54
  enhanced-git = "gitai.cli:app"
55
+ git-ai = "gitai.cli:app"
55
56
 
56
57
  [project.urls]
57
58
  Homepage = "https://github.com/mxzahid/git-ai"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes