From 97e9e63f42c89cbf527386343723c1fde610b4cb Mon Sep 17 00:00:00 2001 From: Pnant <73925474+Panniantong@users.noreply.github.com> Date: Wed, 10 Jun 2026 16:01:57 +0800 Subject: [PATCH] chore: bump version to 1.4.2 (#349) Co-authored-by: Claude Opus 4.8 (1M context) --- CLAUDE.md | 2 +- agent_reach/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_cli.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 2edf47d..60d0aa9 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -3,7 +3,7 @@ ## Project Agent Reach — Python CLI + library that gives AI agents read/search access to 13 internet platforms. Positioning: installer + doctor + config tool. NOT a wrapper — after install, agents call upstream tools directly. -Repo: github.com/Panniantong/Agent-Reach | License: MIT | Version: 1.4.1 +Repo: github.com/Panniantong/Agent-Reach | License: MIT | Version: 1.4.2 ## Commands - `pip install -e .` — Dev install diff --git a/agent_reach/__init__.py b/agent_reach/__init__.py index 3df4b8b..ce3a33b 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.4.1" +__version__ = "1.4.2" __author__ = "Neo Reid" from agent_reach.core import AgentReach diff --git a/pyproject.toml b/pyproject.toml index 9bec0b0..1826345 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agent-reach" -version = "1.4.1" +version = "1.4.2" 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 5096c18..5cd67d8 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -132,7 +132,7 @@ class TestCheckUpdateRetry: sequence = [ R(429, headers={"Retry-After": "3"}), - R(200, payload={"tag_name": "v1.4.1"}), + R(200, payload={"tag_name": "v1.4.2"}), ] with patch("requests.get", side_effect=sequence):