Skip to content

Commit fc6ce5b

Browse files
RoyLinRoyLin
authored andcommitted
chore: bump version to v1.6.0
1 parent 08c9f98 commit fc6ce5b

6 files changed

Lines changed: 24 additions & 24 deletions

File tree

core/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-core"
3-
version = "1.5.8"
3+
version = "1.6.0"
44
edition = "2021"
55
authors = ["A3S Lab Team"]
66
license = "MIT"
@@ -17,7 +17,7 @@ a3s-common = { version = "0.1", path = "../../common" }
1717
a3s-memory = { version = "0.1.1", path = "../../memory" }
1818
a3s-lane = { version = "0.4", path = "../../lane" }
1919
a3s-search = { version = "0.9", path = "../../search", default-features = false }
20-
a3s-ahp = { version = "2.0", optional = true }
20+
a3s-ahp = { version = "2.0", path = "../../ahp", optional = true }
2121

2222
# Async runtime
2323
tokio = { version = "1.35", features = [

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 = "1.5.8"
3+
version = "1.6.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 = "1.5.8", path = "../../core", features = ["ahp"] }
14+
a3s-code-core = { version = "1.6.0", path = "../../core", features = ["ahp"] }
1515
a3s-ahp = { version = "2.0", features = ["all-transports"] }
1616
napi = { version = "2", features = ["async", "napi6", "serde-json"] }
1717
napi-derive = "2"

sdk/node/package-lock.json

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

sdk/node/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@a3s-lab/code",
3-
"version": "1.5.8",
3+
"version": "1.6.0",
44
"description": "A3S Code - Native AI coding agent library for Node.js",
55
"main": "index.js",
66
"types": "index.d.ts",
@@ -46,12 +46,12 @@
4646
"test:ocr-provider-example": "node examples/test-document-ocr-provider.js"
4747
},
4848
"optionalDependencies": {
49-
"@a3s-lab/code-darwin-arm64": "1.5.8",
50-
"@a3s-lab/code-darwin-x64": "1.5.8",
51-
"@a3s-lab/code-linux-x64-gnu": "1.5.8",
52-
"@a3s-lab/code-linux-x64-musl": "1.5.8",
53-
"@a3s-lab/code-linux-arm64-gnu": "1.5.8",
54-
"@a3s-lab/code-linux-arm64-musl": "1.5.8",
55-
"@a3s-lab/code-win32-x64-msvc": "1.5.8"
49+
"@a3s-lab/code-darwin-arm64": "1.6.0",
50+
"@a3s-lab/code-darwin-x64": "1.6.0",
51+
"@a3s-lab/code-linux-x64-gnu": "1.6.0",
52+
"@a3s-lab/code-linux-x64-musl": "1.6.0",
53+
"@a3s-lab/code-linux-arm64-gnu": "1.6.0",
54+
"@a3s-lab/code-linux-arm64-musl": "1.6.0",
55+
"@a3s-lab/code-win32-x64-msvc": "1.6.0"
5656
}
5757
}

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 = "1.5.8"
3+
version = "1.6.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 = "1.5.8", path = "../../core", features = ["ahp"] }
15+
a3s-code-core = { version = "1.6.0", path = "../../core", features = ["ahp"] }
1616
a3s-ahp = { version = "2.0", features = ["all-transports"] }
1717
pyo3 = { version = "0.23", features = ["auto-initialize"] }
1818
tokio = { version = "1.35", features = ["full"] }

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 = "1.5.8"
7+
version = "1.6.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)