Skip to content

Commit 4609a56

Browse files
authored
Release python 0.1.6 (opensandbox-group#576)
* chore(sdks): versions update * chore: add code owner
1 parent a2bd582 commit 4609a56

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/kubernetes/ @Spground @Generalwin @fengcone @kevinlynx @ninan-nn @hittyt @Pangjiping
1818

1919
# SDKs
20-
/sdks/ @ninan-nn @jwx0925 @hittyt @hellomypastor
20+
/sdks/ @ninan-nn @jwx0925 @hittyt @hellomypastor @Pangjiping
2121

2222
# Specs and docs
2323
/specs/ @jwx0925 @hittyt @ninan-nn

sdks/code-interpreter/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
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.5,<0.2.0",
46+
"opensandbox>=0.1.6,<0.2.0",
4747
]
4848

4949
[project.urls]

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.5", description="User agent string"
68+
default="OpenSandbox-Python-SDK/0.1.6", 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.5", description="User agent string"
56+
default="OpenSandbox-Python-SDK/0.1.6", description="User agent string"
5757
)
5858
headers: dict[str, str] = Field(default_factory=dict, description="User defined headers")
5959

0 commit comments

Comments
 (0)