gitcode-cli 0.5.14__tar.gz → 0.6.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.
Files changed (21) hide show
  1. {gitcode_cli-0.5.14/gitcode_cli.egg-info → gitcode_cli-0.6.1}/PKG-INFO +4 -1
  2. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/README.md +3 -0
  3. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gc_cli/__init__.py +1 -1
  4. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gc_cli/bin/gc-darwin-amd64 +0 -0
  5. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gc_cli/bin/gc-darwin-arm64 +0 -0
  6. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gc_cli/bin/gc-linux-amd64 +0 -0
  7. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gc_cli/bin/gc-linux-arm64 +0 -0
  8. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gc_cli/bin/gc-windows-amd64.exe +0 -0
  9. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1/gitcode_cli.egg-info}/PKG-INFO +4 -1
  10. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/pyproject.toml +1 -1
  11. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/LICENSE +0 -0
  12. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/MANIFEST.in +0 -0
  13. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gc_cli/__main__.py +0 -0
  14. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gc_cli/bin/.gitkeep +0 -0
  15. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gc_cli/wrapper.py +0 -0
  16. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gitcode_cli.egg-info/SOURCES.txt +0 -0
  17. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gitcode_cli.egg-info/dependency_links.txt +0 -0
  18. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gitcode_cli.egg-info/entry_points.txt +0 -0
  19. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/gitcode_cli.egg-info/top_level.txt +0 -0
  20. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/setup.cfg +0 -0
  21. {gitcode_cli-0.5.14 → gitcode_cli-0.6.1}/tests/test_wrapper.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gitcode-cli
3
- Version: 0.5.14
3
+ Version: 0.6.1
4
4
  Summary: GitCode CLI - Command line tool for GitCode
5
5
  Author-email: GitCode CLI Contributors <support@gitcode.com>
6
6
  Maintainer-email: GitCode CLI Contributors <support@gitcode.com>
@@ -297,6 +297,9 @@ gc pr create --title "New feature" --base main
297
297
  # 按提交信息反查 PR
298
298
  gc pr list -R owner/repo --commit-message "fix login"
299
299
 
300
+ # 提交前检查 pre-commit 配置与本地环境
301
+ gc precommit check
302
+
300
303
  # 调用 GitCode API 原始响应
301
304
  gc api repos/owner/repo
302
305
 
@@ -268,6 +268,9 @@ gc pr create --title "New feature" --base main
268
268
  # 按提交信息反查 PR
269
269
  gc pr list -R owner/repo --commit-message "fix login"
270
270
 
271
+ # 提交前检查 pre-commit 配置与本地环境
272
+ gc precommit check
273
+
271
274
  # 调用 GitCode API 原始响应
272
275
  gc api repos/owner/repo
273
276
 
@@ -4,7 +4,7 @@ GitCode CLI - Command line tool for GitCode.
4
4
  This package provides a Python wrapper for the gc binary.
5
5
  """
6
6
 
7
- __version__ = "0.5.14"
7
+ __version__ = "0.6.1"
8
8
  __author__ = "GitCode CLI Contributors"
9
9
  __all__ = ["__version__", "main"]
10
10
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gitcode-cli
3
- Version: 0.5.14
3
+ Version: 0.6.1
4
4
  Summary: GitCode CLI - Command line tool for GitCode
5
5
  Author-email: GitCode CLI Contributors <support@gitcode.com>
6
6
  Maintainer-email: GitCode CLI Contributors <support@gitcode.com>
@@ -297,6 +297,9 @@ gc pr create --title "New feature" --base main
297
297
  # 按提交信息反查 PR
298
298
  gc pr list -R owner/repo --commit-message "fix login"
299
299
 
300
+ # 提交前检查 pre-commit 配置与本地环境
301
+ gc precommit check
302
+
300
303
  # 调用 GitCode API 原始响应
301
304
  gc api repos/owner/repo
302
305
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "gitcode-cli"
7
- version = "0.5.14"
7
+ version = "0.6.1"
8
8
  description = "GitCode CLI - Command line tool for GitCode"
9
9
  readme = "README.md"
10
10
  license = "MIT"
File without changes
File without changes
File without changes