Skip to content

Commit bb47d01

Browse files
authored
Merge pull request opensandbox-group#1000 from ninan-nn/feature/release_20260608
chore(sdk): bump version
2 parents 6cc55f2 + 17137ed commit bb47d01

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

sdks/code-interpreter/python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ classifiers = [
4343
]
4444
dependencies = [
4545
"pydantic>=2.4.2,<3.0",
46-
"opensandbox>=0.1.7,<0.2.0",
46+
"opensandbox>=0.1.10,<0.2.0",
4747
]
4848

4949
[project.urls]
@@ -60,7 +60,7 @@ source = "vcs"
6060
root = "../../.."
6161
tag_regex = "^python/code-interpreter/v(?P<version>\\d+\\.\\d+\\.\\d+(?:[\\.\\w\\+\\-]*)?)$"
6262
git_describe_command = 'git describe --dirty --tags --long --match "python/code-interpreter/v*"'
63-
fallback_version = "0.1.0"
63+
fallback_version = "0.1.3"
6464

6565
[tool.hatch.build]
6666
include = [

sdks/mcp/sandbox/python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ classifiers = [
4343
]
4444
dependencies = [
4545
"mcp[cli]",
46-
"opensandbox>=0.1.7,<0.2.0",
46+
"opensandbox>=0.1.10,<0.2.0",
4747
]
4848

4949
[project.urls]
@@ -63,7 +63,7 @@ source = "vcs"
6363
root = "../../../.."
6464
tag_regex = "^python/mcp/sandbox/v(?P<version>\\d+\\.\\d+\\.\\d+(?:[\\.\\w\\+\\-]*)?)$"
6565
git_describe_command = 'git describe --dirty --tags --long --match "python/mcp/sandbox/v*"'
66-
fallback_version = "0.1.0"
66+
fallback_version = "0.1.2"
6767

6868
[tool.hatch.build]
6969
include = [

sdks/sandbox/go/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const (
3939
DefaultCodeInterpreterTimeoutSeconds = 900
4040

4141
// Version is the SDK version reported in the User-Agent header.
42-
Version = "1.0.1"
42+
Version = "1.0.2"
4343

4444
// APIVersion is the lifecycle API version prefix.
4545
APIVersion = "v1"

sdks/sandbox/javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alibaba-group/opensandbox",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "OpenSandbox TypeScript/JavaScript SDK (sandbox lifecycle + execd APIs)",
55
"license": "Apache-2.0",
66
"type": "module",

sdks/sandbox/javascript/src/core/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ export const DEFAULT_READY_TIMEOUT_SECONDS = 30;
2727
export const DEFAULT_HEALTH_CHECK_POLLING_INTERVAL_MILLIS = 200;
2828

2929
export const DEFAULT_REQUEST_TIMEOUT_SECONDS = 30;
30-
export const DEFAULT_USER_AGENT = "OpenSandbox-JS-SDK/0.1.7";
30+
export const DEFAULT_USER_AGENT = "OpenSandbox-JS-SDK/0.1.8";

sdks/sandbox/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ source = "vcs"
6767
root = "../../.."
6868
tag_regex = "^python/sandbox/v(?P<version>\\d+\\.\\d+\\.\\d+(?:[\\.\\w\\+\\-]*)?)$"
6969
git_describe_command = 'git describe --dirty --tags --long --match "python/sandbox/v*"'
70-
fallback_version = "0.1.9"
70+
fallback_version = "0.1.10"
7171

7272
[tool.hatch.build]
7373
include = [

sdks/sandbox/python/src/opensandbox/config/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class ConnectionConfig(BaseModel):
6565
default=False, description="Enable debug logging for HTTP requests"
6666
)
6767
user_agent: str = Field(
68-
default="OpenSandbox-Python-SDK/0.1.9", description="User agent string"
68+
default="OpenSandbox-Python-SDK/0.1.10", description="User agent string"
6969
)
7070
headers: dict[str, str] = Field(
7171
default_factory=dict, description="User defined headers"

sdks/sandbox/python/src/opensandbox/config/connection_sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class ConnectionConfigSync(BaseModel):
5353
)
5454
debug: bool = Field(default=False, description="Enable debug logging for HTTP requests")
5555
user_agent: str = Field(
56-
default="OpenSandbox-Python-SDK/0.1.9", description="User agent string"
56+
default="OpenSandbox-Python-SDK/0.1.10", description="User agent string"
5757
)
5858
headers: dict[str, str] = Field(default_factory=dict, description="User defined headers")
5959

0 commit comments

Comments
 (0)