Skip to content

Commit 0668dc4

Browse files
committed
fix: bump daemon to v0.7.2, fix demo send command to avoid dial-to-self
- Daemon v0.7.2 fixes envelope routing bug (missing payload) - Demo now suggests --home ~/.agentanycast-client for the send command to avoid 'dial to self' when both demo and send share the same daemon
1 parent ff53bcc commit 0668dc4

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "agentanycast"
7-
version = "0.7.2"
7+
version = "0.7.3"
88
description = "Connect AI agents across any network — no public IP needed. P2P encrypted, NAT-traversing, zero-config on LAN."
99
readme = "README.md"
1010
license = {text = "Apache-2.0"}

src/agentanycast/cli/main.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,13 @@ async def _demo(relay: str | None, home: str | None, *, verbose: bool = False) -
8787
click.style(" Try it", fg="yellow", bold=True) + " -- open another terminal and run:"
8888
)
8989
click.echo()
90-
click.echo(click.style(f' agentanycast send {peer_id} "Hello, world!"', bold=True))
90+
# Use a different home to avoid "dial to self" (same daemon, same key).
91+
send_home = "~/.agentanycast-client"
92+
click.echo(
93+
click.style(
94+
f' agentanycast send --home {send_home} {peer_id} "Hello, world!"', bold=True
95+
)
96+
)
9197
click.echo()
9298
click.echo(" Waiting for incoming tasks... (Ctrl+C to stop)")
9399
click.echo()

src/agentanycast/daemon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
# Daemon binary version — independent of the SDK package version.
4040
# Update this when a new agentanycast-node release is published.
41-
_DEFAULT_DAEMON_VERSION = "0.7.1"
41+
_DEFAULT_DAEMON_VERSION = "0.7.2"
4242

4343

4444
def _detect_platform() -> tuple[str, str]:

0 commit comments

Comments
 (0)