git-llm-tool 0.1.2__tar.gz → 0.1.3__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 (22) hide show
  1. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/PKG-INFO +3 -3
  2. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/README.md +2 -2
  3. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/pyproject.toml +1 -1
  4. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/LICENSE +0 -0
  5. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/__init__.py +0 -0
  6. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/__main__.py +0 -0
  7. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/cli.py +0 -0
  8. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/commands/__init__.py +0 -0
  9. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/commands/changelog_cmd.py +0 -0
  10. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/commands/commit_cmd.py +0 -0
  11. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/core/__init__.py +0 -0
  12. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/core/config.py +0 -0
  13. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/core/exceptions.py +0 -0
  14. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/core/git_helper.py +0 -0
  15. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/core/jira_helper.py +0 -0
  16. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/providers/__init__.py +0 -0
  17. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/providers/anthropic.py +0 -0
  18. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/providers/azure_openai.py +0 -0
  19. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/providers/base.py +0 -0
  20. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/providers/factory.py +0 -0
  21. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/git_llm_tool/providers/gemini.py +0 -0
  22. {git_llm_tool-0.1.2 → git_llm_tool-0.1.3}/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.2
3
+ Version: 0.1.3
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
@@ -71,7 +71,7 @@ pip install git-llm-tool
71
71
 
72
72
  ### From Source
73
73
  ```bash
74
- git clone https://github.com/your-username/git-llm-tool.git
74
+ git clone https://github.com/z0890142/git-llm-tool.git
75
75
  cd git-llm-tool
76
76
  poetry install
77
77
  ```
@@ -332,7 +332,7 @@ jira:
332
332
  ### Setup Development Environment
333
333
  ```bash
334
334
  # Clone repository
335
- git clone https://github.com/your-username/git-llm-tool.git
335
+ git clone https://github.com/z0890142/git-llm-tool.git
336
336
  cd git-llm-tool
337
337
 
338
338
  # Install dependencies
@@ -42,7 +42,7 @@ pip install git-llm-tool
42
42
 
43
43
  ### From Source
44
44
  ```bash
45
- git clone https://github.com/your-username/git-llm-tool.git
45
+ git clone https://github.com/z0890142/git-llm-tool.git
46
46
  cd git-llm-tool
47
47
  poetry install
48
48
  ```
@@ -303,7 +303,7 @@ jira:
303
303
  ### Setup Development Environment
304
304
  ```bash
305
305
  # Clone repository
306
- git clone https://github.com/your-username/git-llm-tool.git
306
+ git clone https://github.com/z0890142/git-llm-tool.git
307
307
  cd git-llm-tool
308
308
 
309
309
  # Install dependencies
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "git-llm-tool"
3
- version = "0.1.2"
3
+ version = "0.1.3"
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