Skip to content

Commit ec1a9c3

Browse files
ZhiXiao-Linclaude
andcommitted
chore: bump version to v0.7.0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent eea4de3 commit ec1a9c3

5 files changed

Lines changed: 13 additions & 9 deletions

File tree

core/Cargo.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "a3s-code-core"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
authors = ["A3S Lab Team"]
66
license = "MIT"
@@ -54,8 +54,8 @@ ignore = "0.4"
5454
# Diff for edit tool
5555
similar = "2.4"
5656

57-
# Directory walking for context store
58-
walkdir = "2.4"
57+
# Directory walking for context store (optional)
58+
walkdir = { version = "2.4", optional = true }
5959

6060
# Home directory for project memory
6161
dirs = "5.0"
@@ -81,5 +81,9 @@ uuid = { version = "1.6", features = ["v4", "serde"] }
8181
# Time handling
8282
chrono = { version = "0.4", features = ["serde"] }
8383

84+
[features]
85+
default = []
86+
context-store = ["walkdir"]
87+
8488
[dev-dependencies]
8589
tempfile = "3.10"

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.6.0"
3+
version = "0.7.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.6", path = "../../core" }
14+
a3s-code-core = { version = "0.7", path = "../../core" }
1515
napi = { version = "2", features = ["async", "napi6", "serde-json"] }
1616
napi-derive = "2"
1717
tokio = { version = "1.35", features = ["full"] }

sdk/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@a3s-lab/code",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "A3S Code - Native AI coding agent library for Node.js",
55
"main": "index.js",
66
"types": "index.d.ts",

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.6.0"
3+
version = "0.7.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.6", path = "../../core" }
15+
a3s-code-core = { version = "0.7", path = "../../core" }
1616
pyo3 = { version = "0.23", features = ["extension-module"] }
1717
tokio = { version = "1.35", features = ["full"] }
1818
serde_json = "1.0"

sdk/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "a3s-code"
7-
version = "0.6.0"
7+
version = "0.7.0"
88
description = "A3S Code - Native Python bindings for the AI coding agent"
99
readme = "README.md"
1010
license = {text = "MIT"}

0 commit comments

Comments
 (0)