proxcli 0.2.0__tar.gz → 0.2.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 (48) hide show
  1. {proxcli-0.2.0 → proxcli-0.2.1}/CHANGELOG.md +6 -0
  2. {proxcli-0.2.0 → proxcli-0.2.1}/PKG-INFO +1 -1
  3. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/cli/main.py +2 -1
  4. {proxcli-0.2.0 → proxcli-0.2.1}/pyproject.toml +1 -1
  5. {proxcli-0.2.0 → proxcli-0.2.1}/uv.lock +1 -1
  6. {proxcli-0.2.0 → proxcli-0.2.1}/.env.example +0 -0
  7. {proxcli-0.2.0 → proxcli-0.2.1}/.github/workflows/ci.yml +0 -0
  8. {proxcli-0.2.0 → proxcli-0.2.1}/.gitignore +0 -0
  9. {proxcli-0.2.0 → proxcli-0.2.1}/.python-version +0 -0
  10. {proxcli-0.2.0 → proxcli-0.2.1}/PLAN.md +0 -0
  11. {proxcli-0.2.0 → proxcli-0.2.1}/PROJECT.md +0 -0
  12. {proxcli-0.2.0 → proxcli-0.2.1}/PROMPT.md +0 -0
  13. {proxcli-0.2.0 → proxcli-0.2.1}/README.md +0 -0
  14. {proxcli-0.2.0 → proxcli-0.2.1}/TODO.md +0 -0
  15. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/__init__.py +0 -0
  16. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/cli/__init__.py +0 -0
  17. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/cli/auth.py +0 -0
  18. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/cli/cluster.py +0 -0
  19. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/cli/container.py +0 -0
  20. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/cli/node.py +0 -0
  21. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/cli/storage.py +0 -0
  22. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/cli/tasks.py +0 -0
  23. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/cli/vm.py +0 -0
  24. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/client/__init__.py +0 -0
  25. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/client/auth.py +0 -0
  26. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/client/client.py +0 -0
  27. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/client/exceptions.py +0 -0
  28. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/config/__init__.py +0 -0
  29. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/config/config.py +0 -0
  30. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/config/models.py +0 -0
  31. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/output/__init__.py +0 -0
  32. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/output/formatter.py +0 -0
  33. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/output/json_fmt.py +0 -0
  34. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/output/table_fmt.py +0 -0
  35. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/output/yaml_fmt.py +0 -0
  36. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/utils/__init__.py +0 -0
  37. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/utils/helpers.py +0 -0
  38. {proxcli-0.2.0 → proxcli-0.2.1}/proxmox/utils/logging.py +0 -0
  39. {proxcli-0.2.0 → proxcli-0.2.1}/tests/__init__.py +0 -0
  40. {proxcli-0.2.0 → proxcli-0.2.1}/tests/conftest.py +0 -0
  41. {proxcli-0.2.0 → proxcli-0.2.1}/tests/test_auth.py +0 -0
  42. {proxcli-0.2.0 → proxcli-0.2.1}/tests/test_cli/__init__.py +0 -0
  43. {proxcli-0.2.0 → proxcli-0.2.1}/tests/test_cli/test_main.py +0 -0
  44. {proxcli-0.2.0 → proxcli-0.2.1}/tests/test_client.py +0 -0
  45. {proxcli-0.2.0 → proxcli-0.2.1}/tests/test_config.py +0 -0
  46. {proxcli-0.2.0 → proxcli-0.2.1}/tests/test_integration/__init__.py +0 -0
  47. {proxcli-0.2.0 → proxcli-0.2.1}/tests/test_output/__init__.py +0 -0
  48. {proxcli-0.2.0 → proxcli-0.2.1}/tests/test_output/test_formatter.py +0 -0
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.1] - 2026-06-20
11
+
12
+ ### Fixed
13
+ - `--version` now reads from installed package metadata (`importlib.metadata`) instead of a hardcoded string.
14
+
10
15
  ## [0.2.0] - 2026-06-20
11
16
 
12
17
  ### Added
@@ -36,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
36
41
  - CSRF ticket auto-refresh on 401.
37
42
  - AI-agent-friendly: default JSON output, strict exit codes, `--dry-run` mode.
38
43
 
44
+ [0.2.1]: https://github.com/xezpeleta/proxcli/releases/tag/v0.2.1
39
45
  [0.2.0]: https://github.com/xezpeleta/proxcli/releases/tag/v0.2.0
40
46
  [0.1.1]: https://github.com/xezpeleta/proxcli/releases/tag/v0.1.1
41
47
  [0.1.0]: https://github.com/xezpeleta/proxcli/releases/tag/v0.1.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: proxcli
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: A CLI tool to interact with Proxmox VE nodes and clusters via the REST API
5
5
  Author-email: Xabi Ezpeleta <xezpeleta@gmail.com>
6
6
  License: MIT
@@ -5,6 +5,7 @@ from __future__ import annotations
5
5
  import argparse
6
6
  import os
7
7
  import sys
8
+ from importlib.metadata import version
8
9
  from typing import Any
9
10
 
10
11
  from proxmox.client.auth import AuthManager
@@ -48,7 +49,7 @@ def build_root_parser() -> argparse.ArgumentParser:
48
49
  )
49
50
  parser.add_argument("--verbose", action="store_true", help="Enable debug output to stderr")
50
51
  parser.add_argument(
51
- "--version", action="version", version="proxmox 0.1.0"
52
+ "--version", action="version", version=f"proxmox {version('proxcli')}"
52
53
  )
53
54
 
54
55
  subparsers = parser.add_subparsers(dest="resource", title="resources", required=False)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "proxcli"
3
- version = "0.2.0"
3
+ version = "0.2.1"
4
4
  description = "A CLI tool to interact with Proxmox VE nodes and clusters via the REST API"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -254,7 +254,7 @@ wheels = [
254
254
 
255
255
  [[package]]
256
256
  name = "proxcli"
257
- version = "0.1.1"
257
+ version = "0.2.0"
258
258
  source = { editable = "." }
259
259
  dependencies = [
260
260
  { name = "httpx" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes