Skip to content

Commit 79fc331

Browse files
WiggidyWclaude
andcommitted
release: bump everything to 2.0.8
Bundles the recent surface changes: shared updater across the four binaries (cli / api / mcp / viewer), opt-in updater feature, viewer remote-URL iframe source, plugins install split into `github`/`filesystem` subcommands, multi-extension plugin resolver fallback, .NET dropped from root build.sh, and FUNCTIONS_INVENTIONS_SUBSCRIBE_TOOLS_TIMEOUT bumped to 5 min for test-stability under heavy parallel load. `bash version.sh 2.0.8` touched: Rust crates + cross-crate path dep version pins, Python packages, JS packages, .NET csproj, runner subpackages, README. Cargo.lock synced; pnpm-lock.yaml will refresh on next pnpm install. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 551aae9 commit 79fc331

27 files changed

Lines changed: 56 additions & 56 deletions

File tree

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

objectiveai-api/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "objectiveai-api"
3-
version = "2.0.7"
3+
version = "2.0.8"
44
edition = "2024"
55
authors = ["ObjectiveAI <admin@objectiveai.dev>"]
66
description = "ObjectiveAI API Server"
@@ -34,8 +34,8 @@ orchestrator-bollard = ["dep:bollard", "dep:tar"]
3434
updater = ["objectiveai-sdk/updater"]
3535

3636
[dependencies]
37-
objectiveai-sdk = { path = "../objectiveai-sdk-rs", version = "2.0.7", default-features = false, features = ["http", "mcp"] }
38-
objectiveai-mcp-proxy = { path = "../objectiveai-mcp-proxy", version = "2.0.7" }
37+
objectiveai-sdk = { path = "../objectiveai-sdk-rs", version = "2.0.8", default-features = false, features = ["http", "mcp"] }
38+
objectiveai-mcp-proxy = { path = "../objectiveai-mcp-proxy", version = "2.0.8" }
3939
serde_json = { version = "1.0.149", features = ["preserve_order"] }
4040
serde = { version = "1.0.228", features = ["derive"] }
4141
indexmap = { version = "2.13.0", features = ["serde"] }

objectiveai-claude-agent-sdk-runner/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
from __future__ import annotations
5050

51-
__version__ = "2.0.7"
51+
__version__ = "2.0.8"
5252

5353
import asyncio
5454
import json

objectiveai-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "objectiveai-cli"
3-
version = "2.0.7"
3+
version = "2.0.8"
44
edition = "2024"
55
authors = ["ObjectiveAI <admin@objectiveai.dev>"]
66
description = "ObjectiveAI command-line interface and embeddable library"
@@ -25,8 +25,8 @@ rustpython = ["dep:rustpython"]
2525
systempython = []
2626

2727
[dependencies]
28-
objectiveai-sdk = { path = "../objectiveai-sdk-rs", version = "2.0.7" }
29-
objectiveai-api = { path = "../objectiveai-api", version = "2.0.7", default-features = false, features = ["orchestrator-bollard"] }
28+
objectiveai-sdk = { path = "../objectiveai-sdk-rs", version = "2.0.8" }
29+
objectiveai-api = { path = "../objectiveai-api", version = "2.0.8", default-features = false, features = ["orchestrator-bollard"] }
3030
clap = { version = "4.6.0", features = ["derive"] }
3131
ratatui = "0.30.0"
3232
tokio = { version = "1.50.0", features = ["full"] }

objectiveai-cli/builder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "objectiveai-cli-builder"
3-
version = "2.0.7"
3+
version = "2.0.8"
44
edition = "2024"
55

66
[dependencies]

objectiveai-cli/test-fixtures/hello-plugin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hello-plugin"
3-
version = "2.0.7"
3+
version = "2.0.8"
44
edition = "2024"
55
publish = false
66

objectiveai-cocoindex/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "objectiveai-cocoindex"
7-
version = "2.0.7"
7+
version = "2.0.8"
88
description = "ObjectiveAI integration for CocoIndex"
99
readme = "README.md"
1010
license = "MIT"
@@ -27,7 +27,7 @@ classifiers = [
2727
"Topic :: Software Development :: Libraries :: Python Modules",
2828
]
2929
dependencies = [
30-
"objectiveai-sdk==2.0.7",
30+
"objectiveai-sdk==2.0.8",
3131
"cocoindex",
3232
]
3333

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
objectiveai-sdk==2.0.7
1+
objectiveai-sdk==2.0.8
22
cocoindex

objectiveai-codex-sdk-runner/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
from __future__ import annotations
5252

53-
__version__ = "2.0.7"
53+
__version__ = "2.0.8"
5454

5555
import asyncio
5656
import json

objectiveai-dotnet/ObjectiveAI/ObjectiveAI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- NuGet package metadata -->
99
<PackageId>ObjectiveAI</PackageId>
10-
<Version>2.0.7</Version>
10+
<Version>2.0.8</Version>
1111
<Authors>ObjectiveAI</Authors>
1212
<Description>SDK for the ObjectiveAI API.</Description>
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>

0 commit comments

Comments
 (0)