vssh 3.3.9__tar.gz → 3.3.10__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.9
3
+ Version: 3.3.10
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.9"
7
+ version = "3.3.10"
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.9
3
+ Version: 3.3.10
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
@@ -12,7 +12,6 @@ from pathlib import Path
12
12
  from concurrent.futures import ThreadPoolExecutor, as_completed
13
13
  from typing import Tuple, Optional
14
14
 
15
- __version__ = '3.3.9'
16
15
 
17
16
  # ========== Standalone Config (no mpop dependency) ==========
18
17
  VSSH_DIR_CONF = Path.home() / '.vssh'
@@ -3490,7 +3489,11 @@ def _cmd_install(args):
3490
3489
 
3491
3490
 
3492
3491
  def _get_vssh_version():
3493
- return __version__
3492
+ try:
3493
+ from importlib.metadata import version as _v
3494
+ return _v('vssh')
3495
+ except Exception:
3496
+ return '?'
3494
3497
 
3495
3498
 
3496
3499
 
@@ -3502,7 +3505,7 @@ def main():
3502
3505
  from importlib.metadata import version as _v
3503
3506
  print(f"vssh v{_v('vssh')}")
3504
3507
  except Exception:
3505
- print(f"vssh v{__version__}")
3508
+ print(f"vssh v{_get_vssh_version()}")
3506
3509
  return
3507
3510
  if not args:
3508
3511
  print('''vssh v3 - Distributed command & file transport daemon for server meshes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes