Skip to content

Commit aa89a4d

Browse files
committed
chore: bump version to 0.8.0
New since v0.7.3: - feat(multimodal): multi-modal vision support (image attachments) - feat(sandbox): A3S Box sandbox integration as built-in tool - feat(resilience): parse error recovery, tool timeout, circuit breaker - feat(sdk): true streaming for Node.js and Python SDKs - feat(persistence): session save/resume API - feat(memory): FileMemoryStore with file-based persistence - fix(sdk): permissive policy and missing session options - docs: agentic loop demos for all 3 SDKs
1 parent 138c3af commit aa89a4d

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

Cargo.lock

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

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "a3s-code-core"
3-
version = "0.7.3"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = ["A3S Lab Team"]
66
license = "MIT"

sdk/node/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "a3s-code-node"
3-
version = "0.7.2"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = ["A3S Lab Team"]
66
license = "MIT"
@@ -11,7 +11,7 @@ description = "A3S Code Node.js bindings - Native addon via napi-rs"
1111
crate-type = ["cdylib"]
1212

1313
[dependencies]
14-
a3s-code-core = { version = "0.7", path = "../../core" }
14+
a3s-code-core = { version = "0.8", path = "../../core" }
1515
napi = { version = "2", features = ["async", "napi6", "serde-json"] }
1616
napi-derive = "2"
1717
tokio = { version = "1.35", features = ["full"] }

sdk/python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "a3s-code-py"
3-
version = "0.7.2"
3+
version = "0.8.0"
44
edition = "2021"
55
authors = ["A3S Lab Team"]
66
license = "MIT"
@@ -12,7 +12,7 @@ name = "a3s_code"
1212
crate-type = ["cdylib"]
1313

1414
[dependencies]
15-
a3s-code-core = { version = "0.7", path = "../../core" }
15+
a3s-code-core = { version = "0.8", path = "../../core" }
1616
pyo3 = { version = "0.23", features = ["extension-module"] }
1717
tokio = { version = "1.35", features = ["full"] }
1818
serde_json = "1.0"

0 commit comments

Comments
 (0)