Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdks/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<!-- Shared C# SDK packaging metadata -->
<OpenSandboxPackageVersion>0.1.2</OpenSandboxPackageVersion>
<OpenSandboxPackageVersion>0.1.3</OpenSandboxPackageVersion>
<OpenSandboxCodeInterpreterPackageVersion>0.1.1</OpenSandboxCodeInterpreterPackageVersion>
<OpenSandboxDependencyVersionRange>[$(OpenSandboxPackageVersion),0.2.0)</OpenSandboxDependencyVersionRange>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion sdks/code-interpreter/kotlin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ org.gradle.parallel=true

# Project metadata
project.group=com.alibaba.opensandbox
project.version=1.0.12
project.version=1.0.13
project.description=A Kotlin SDK for Code Interpreter
2 changes: 1 addition & 1 deletion sdks/code-interpreter/kotlin/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spotless = "6.23.3"
maven-publish = "0.35.0"
dokka = "1.9.10"
jackson = "2.18.2"
sandbox = "1.0.12"
sandbox = "1.0.13"
junit-platform = "1.13.4"

[libraries]
Expand Down
2 changes: 1 addition & 1 deletion sdks/sandbox/javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alibaba-group/opensandbox",
"version": "0.1.8",
"version": "0.1.9",
"description": "OpenSandbox TypeScript/JavaScript SDK (sandbox lifecycle + execd APIs)",
"license": "Apache-2.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion sdks/sandbox/kotlin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ org.gradle.parallel=true

# Project metadata
project.group=com.alibaba.opensandbox
project.version=1.0.12
project.version=1.0.13
project.description=A Kotlin SDK for Open Sandbox API
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class ConnectionConfig private constructor(
private const val ENV_API_KEY = "OPEN_SANDBOX_API_KEY"
private const val ENV_DOMAIN = "OPEN_SANDBOX_DOMAIN"

private const val DEFAULT_USER_AGENT = "OpenSandbox-Kotlin-SDK/1.0.12"
private const val DEFAULT_USER_AGENT = "OpenSandbox-Kotlin-SDK/1.0.13"
private const val API_VERSION = "v1"

@JvmStatic
Expand Down
2 changes: 1 addition & 1 deletion sdks/sandbox/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ source = "vcs"
root = "../../.."
tag_regex = "^python/sandbox/v(?P<version>\\d+\\.\\d+\\.\\d+(?:[\\.\\w\\+\\-]*)?)$"
git_describe_command = 'git describe --dirty --tags --long --match "python/sandbox/v*"'
fallback_version = "0.1.10"
fallback_version = "0.1.11"

[tool.hatch.build]
include = [
Expand Down
2 changes: 1 addition & 1 deletion sdks/sandbox/python/src/opensandbox/config/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class ConnectionConfig(BaseModel):
default=False, description="Enable debug logging for HTTP requests"
)
user_agent: str = Field(
default="OpenSandbox-Python-SDK/0.1.10", description="User agent string"
default="OpenSandbox-Python-SDK/0.1.11", description="User agent string"
)
headers: dict[str, str] = Field(
default_factory=dict, description="User defined headers"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class ConnectionConfigSync(BaseModel):
)
debug: bool = Field(default=False, description="Enable debug logging for HTTP requests")
user_agent: str = Field(
default="OpenSandbox-Python-SDK/0.1.10", description="User agent string"
default="OpenSandbox-Python-SDK/0.1.11", description="User agent string"
)
headers: dict[str, str] = Field(default_factory=dict, description="User defined headers")

Expand Down
Loading