From 58b3a4dcb3d6b2968a2f9b4c7b09ececb8a14b44 Mon Sep 17 00:00:00 2001 From: Panniantong Date: Thu, 26 Feb 2026 15:07:24 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20sync=20=5F=5Fversion=5F=5F=20with=20pypr?= =?UTF-8?q?oject.toml=20(1.0.0=20=E2=86=92=201.2.0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #29 — __version__ in __init__.py was still '1.0.0' while pyproject.toml had already been bumped to '1.2.0'. This caused misleading output in 'agent-reach --version' and 'agent-reach doctor'. --- agent_reach/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent_reach/__init__.py b/agent_reach/__init__.py index 9b8bcbb..768e941 100644 --- a/agent_reach/__init__.py +++ b/agent_reach/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """Agent Reach — Give your AI Agent eyes to see the entire internet.""" -__version__ = "1.0.0" +__version__ = "1.2.0" __author__ = "Neo Reid" from agent_reach.core import AgentReach