Skip to content

Commit 2506ca5

Browse files
RafaelPogithub-actions[bot]
authored andcommitted
chore(futuresearch-python): bump version to 0.8.0 (#5133)
## Summary - Bump SDK + MCP version from 0.7.0 to 0.8.0 across all packages and manifests - Updates 9 files: 4 pyproject.toml, manifest.json, server.json, plugin.json, marketplace.json, gemini-extension.json ### New features since 0.7.0: - `document_query_llm` param for `agent_map` / `agent_map_async` - `llm` param for `dedupe` / `dedupe_async` - Session rename support (`session_name` + `session_id` together) - `conversation_id` param in `create_session` - MCP: widget UX fixes, activity rehydration, deferred polling instructions, active worker counts ## Test plan - [ ] CI passes (version consistency test validates all version strings match) - [ ] After merge, sync action copies to futuresearch-python repo - [ ] Create GitHub Release with tag `v0.8.0` on futuresearch-python to trigger PyPI publish 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Sourced from commit 0176763f6a305c167e2cb4768b5189e4e9dddcdb
1 parent 33ee2ee commit 2506ca5

12 files changed

Lines changed: 24 additions & 18 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"name": "futuresearch",
1212
"source": "./",
1313
"description": "Give Claude Code a research team. Forecast, score, classify, or research every row of a dataset.",
14-
"version": "0.7.0"
14+
"version": "0.8.0"
1515
}
1616
]
1717
}

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "futuresearch",
33
"description": "Give Claude Code a research team. Forecast, score, classify, or research every row of a dataset.",
4-
"version": "0.7.0",
4+
"version": "0.8.0",
55
"author": {
66
"name": "FutureSearch"
77
},

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type: software
44
title: "futuresearch"
55
abstract: "A researcher for every row. Run web research agents at scale to forecast, score, classify, deduplicate, merge, or enrich entire datasets."
66
license: MIT
7-
version: 0.7.0
7+
version: 0.8.0
88
date-released: 2026-02-24
99
repository-code: "https://github.com/futuresearch/everyrow-sdk"
1010
url: "https://futuresearch.ai"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ Built by [FutureSearch](https://futuresearch.ai).
262262
author = {FutureSearch},
263263
title = {futuresearch},
264264
url = {https://github.com/futuresearch/futuresearch-python},
265-
version = {0.7.0},
265+
version = {0.8.0},
266266
year = {2026},
267267
license = {MIT}
268268
}

futuresearch-mcp/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": "0.4",
33
"name": "futuresearch-mcp",
44
"display_name": "FutureSearch MCP Server",
5-
"version": "0.7.0",
5+
"version": "0.8.0",
66
"description": "Give your AI a research team. Forecast, score, classify, or research every row of a dataset.",
77
"long_description": "MCP server for futuresearch: give your AI a research team. Each operation dispatches web research agents across a dataset to forecast, score, classify, deduplicate, merge, or research at scale.",
88
"author": {

futuresearch-mcp/pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[project]
22
name = "futuresearch-mcp"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
description = "MCP server for futuresearch: a researcher for every row"
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
88
"PyJWT[crypto]>=2.8.0",
9-
"futuresearch>=0.7.0",
9+
"futuresearch>=0.8.0",
1010
"httpx>=0.27.0",
1111
"jsonschema>=4.0.0",
1212
"mcp[cli]>=1.0.0",
@@ -39,6 +39,7 @@ dev = [
3939

4040
[tool.uv]
4141
exclude-newer = "7 days"
42+
exclude-newer-package = { futuresearch = false, futuresearch-mcp = false }
4243

4344
[tool.basedpyright]
4445
venvPath = ".."

futuresearch-mcp/server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"subfolder": "futuresearch-mcp"
1010
},
1111
"websiteUrl": "https://github.com/futuresearch/everyrow-sdk/tree/main/futuresearch-mcp",
12-
"version": "0.7.0",
12+
"version": "0.8.0",
1313
"packages": [
1414
{
1515
"registryType": "pypi",
1616
"registryBaseUrl": "https://pypi.org",
1717
"identifier": "futuresearch-mcp",
18-
"version": "0.7.0",
18+
"version": "0.8.0",
1919
"runtimeHint": "uvx",
2020
"transport": {
2121
"type": "stdio"

gemini-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "futuresearch",
33
"description": "Gemini extension for the futuresearch SDK - AI-powered data processing utilities for transforming, deduping, merging, ranking, and classifying dataframes",
4-
"version": "0.7.0",
4+
"version": "0.8.0",
55
"mcpServers": {
66
"futuresearch": {
77
"command": "uvx",

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tool.uv]
22
exclude-newer = "7 days"
3+
exclude-newer-package = { futuresearch = false, futuresearch-mcp = false }
34

45
[tool.uv.workspace]
56
members = ["futuresearch-mcp"]
@@ -9,7 +10,7 @@ futuresearch = { workspace = true }
910

1011
[project]
1112
name = "futuresearch"
12-
version = "0.7.0"
13+
version = "0.8.0"
1314
description = "A researcher for every row. Forecast, score, classify, or research entire datasets."
1415
readme = "README.md"
1516
requires-python = ">=3.12"

stubs/everyrow-mcp/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[project]
22
name = "everyrow-mcp"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
description = "Renamed to futuresearch-mcp. This package is a compatibility shim."
55
readme = "README.md"
66
requires-python = ">=3.12"
7-
dependencies = ["futuresearch-mcp>=0.7.0"]
7+
dependencies = ["futuresearch-mcp>=0.8.0"]
88

99
[tool.hatch.build.targets.wheel]
1010
packages = ["src/everyrow_mcp"]

0 commit comments

Comments
 (0)