chore: bump version to 1.4.2 (#349)
ci / test (3.10) (push) Has been cancelled
ci / test (3.11) (push) Has been cancelled
ci / test (3.12) (push) Has been cancelled
ci / test (3.13) (push) Has been cancelled
ci / wheel-gate (push) Has been cancelled

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Pnant
2026-06-10 16:01:57 +08:00
committed by GitHub
parent 853e5190e4
commit 97e9e63f42
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
## Project ## Project
Agent Reach — Python CLI + library that gives AI agents read/search access to 13 internet platforms. 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. 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 ## Commands
- `pip install -e .` — Dev install - `pip install -e .` — Dev install
+1 -1
View File
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
"""Agent Reach — Give your AI Agent eyes to see the entire internet.""" """Agent Reach — Give your AI Agent eyes to see the entire internet."""
__version__ = "1.4.1" __version__ = "1.4.2"
__author__ = "Neo Reid" __author__ = "Neo Reid"
from agent_reach.core import AgentReach from agent_reach.core import AgentReach
+1 -1
View File
@@ -1,6 +1,6 @@
[project] [project]
name = "agent-reach" 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." description = "Give your AI Agent eyes to see the entire internet. Search + Read 10+ platforms."
readme = "README.md" readme = "README.md"
license = {text = "MIT"} license = {text = "MIT"}
+1 -1
View File
@@ -132,7 +132,7 @@ class TestCheckUpdateRetry:
sequence = [ sequence = [
R(429, headers={"Retry-After": "3"}), 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): with patch("requests.get", side_effect=sequence):