From ca29c4fee57b5c00f2e8d17d1cb4cb49e199ee69 Mon Sep 17 00:00:00 2001 From: Pnant <73925474+Panniantong@users.noreply.github.com> Date: Wed, 4 Mar 2026 18:18:18 +0800 Subject: [PATCH] release: v1.3.0 (#70) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New: - WeChat Official Account channel (search + read) - Search via miku_ai (Sogou WeChat search) - Read via Camoufox (stealth Firefox, bypasses anti-bot) - 13 channels total Fixed: - Windows encoding: text=True → encoding='utf-8' in all subprocess calls (#64) - Windows .cmd resolution: use shutil.which() paths (#64) Docs: - Clarified agent-reach has no read/search commands (#58, #59) - Fixed xiaohongshu API function names in SKILL.md (#65) - Added CONTRIBUTING.md (#62) - Updated README (zh + en) with WeChat channel Version bumps: pyproject.toml, __init__.py, test_cli.py Co-authored-by: Panniantong --- agent_reach/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_cli.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/agent_reach/__init__.py b/agent_reach/__init__.py index 768e941..c5c269a 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.2.0" +__version__ = "1.3.0" __author__ = "Neo Reid" from agent_reach.core import AgentReach diff --git a/pyproject.toml b/pyproject.toml index b69a427..ebfa2b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agent-reach" -version = "1.2.0" +version = "1.3.0" description = "Give your AI Agent eyes to see the entire internet. Search + Read 10+ platforms." readme = "README.md" license = {text = "MIT"} diff --git a/tests/test_cli.py b/tests/test_cli.py index 17ce9cf..d74d88e 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -77,7 +77,7 @@ class TestCheckUpdateRetry: sequence = [ R(429, headers={"Retry-After": "3"}), - R(200, payload={"tag_name": "v1.2.0"}), + R(200, payload={"tag_name": "v1.3.0"}), ] with patch("requests.get", side_effect=sequence):