git-llm-tool 0.1.0__tar.gz → 0.1.1__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.

Potentially problematic release.


This version of git-llm-tool might be problematic. Click here for more details.

Files changed (21) hide show
  1. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/PKG-INFO +3 -3
  2. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/README.md +2 -2
  3. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/pyproject.toml +1 -1
  4. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/LICENSE +0 -0
  5. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/__init__.py +0 -0
  6. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/__main__.py +0 -0
  7. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/cli.py +0 -0
  8. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/commands/__init__.py +0 -0
  9. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/commands/commit_cmd.py +0 -0
  10. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/core/__init__.py +0 -0
  11. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/core/config.py +0 -0
  12. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/core/exceptions.py +0 -0
  13. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/core/git_helper.py +0 -0
  14. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/core/jira_helper.py +0 -0
  15. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/providers/__init__.py +0 -0
  16. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/providers/anthropic.py +0 -0
  17. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/providers/azure_openai.py +0 -0
  18. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/providers/base.py +0 -0
  19. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/providers/factory.py +0 -0
  20. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/providers/gemini.py +0 -0
  21. {git_llm_tool-0.1.0 → git_llm_tool-0.1.1}/git_llm_tool/providers/openai.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: git-llm-tool
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: AI-powered git commit message and changelog generator
5
5
  License: MIT
6
6
  Keywords: git,commit,llm,ai,automation,jira,conventional-commits
@@ -70,7 +70,7 @@ pip install git-llm-tool
70
70
 
71
71
  ### From Source
72
72
  ```bash
73
- git clone https://github.com/your-username/git-llm-tool.git
73
+ git clone https://github.com/z0890142/git-llm-tool.git
74
74
  cd git-llm-tool
75
75
  poetry install
76
76
  ```
@@ -331,7 +331,7 @@ jira:
331
331
  ### Setup Development Environment
332
332
  ```bash
333
333
  # Clone repository
334
- git clone https://github.com/your-username/git-llm-tool.git
334
+ git clone https://github.com/z0890142/git-llm-tool.git
335
335
  cd git-llm-tool
336
336
 
337
337
  # Install dependencies
@@ -41,7 +41,7 @@ pip install git-llm-tool
41
41
 
42
42
  ### From Source
43
43
  ```bash
44
- git clone https://github.com/your-username/git-llm-tool.git
44
+ git clone https://github.com/z0890142/git-llm-tool.git
45
45
  cd git-llm-tool
46
46
  poetry install
47
47
  ```
@@ -302,7 +302,7 @@ jira:
302
302
  ### Setup Development Environment
303
303
  ```bash
304
304
  # Clone repository
305
- git clone https://github.com/your-username/git-llm-tool.git
305
+ git clone https://github.com/z0890142/git-llm-tool.git
306
306
  cd git-llm-tool
307
307
 
308
308
  # Install dependencies
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "git-llm-tool"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "AI-powered git commit message and changelog generator"
5
5
  authors = ["skyler-gogolook <skyler.lo@gogolook.com>"]
6
6
  readme = "README.md"
File without changes