From 23d4d5c611b871a49d33a771769c0b3dc554c85b Mon Sep 17 00:00:00 2001 From: Pnant <73925474+Panniantong@users.noreply.github.com> Date: Tue, 31 Mar 2026 18:26:18 +0800 Subject: [PATCH] chore: bump version to 1.4.0 Co-Authored-By: Claude Opus 4.6 (1M context) --- 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 c5c269a..1a1ef8e 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.3.0" +__version__ = "1.4.0" __author__ = "Neo Reid" from agent_reach.core import AgentReach diff --git a/pyproject.toml b/pyproject.toml index 6f09e52..277a540 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agent-reach" -version = "1.3.0" +version = "1.4.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 3e2253b..ed28c91 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -89,7 +89,7 @@ class TestCheckUpdateRetry: sequence = [ R(429, headers={"Retry-After": "3"}), - R(200, payload={"tag_name": "v1.3.0"}), + R(200, payload={"tag_name": "v1.4.0"}), ] with patch("requests.get", side_effect=sequence):