vssh 3.3.6__tar.gz → 3.3.7__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vssh
3
- Version: 3.3.6
3
+ Version: 3.3.7
4
4
  Summary: Secure SSH/SCP tool with Tailscale failover, P2P transport, and MCP server
5
5
  Author-email: MeshPOP <mpop@mpop.dev>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "vssh"
7
- version = "3.3.6"
7
+ version = "3.3.7"
8
8
  description = "Secure SSH/SCP tool with Tailscale failover, P2P transport, and MCP server"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vssh
3
- Version: 3.3.6
3
+ Version: 3.3.7
4
4
  Summary: Secure SSH/SCP tool with Tailscale failover, P2P transport, and MCP server
5
5
  Author-email: MeshPOP <mpop@mpop.dev>
6
6
  License: MIT
@@ -3439,6 +3439,15 @@ WantedBy=multi-user.target
3439
3439
  else:
3440
3440
  print(f"[vssh install] ✗ Unsupported OS: {_plat.system()}")
3441
3441
 
3442
+
3443
+ def _get_vssh_version():
3444
+ try:
3445
+ from importlib.metadata import version as _v
3446
+ return _v('vssh')
3447
+ except Exception:
3448
+ return '?'
3449
+
3450
+
3442
3451
  def main():
3443
3452
  args = sys.argv[1:]
3444
3453
  # Handle --version and --help flags
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes