You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+
## [1.9.1] - 2026-04-01
11
+
12
+
### Changed
13
+
-**LanceDB is now an optional build feature**: The `lancedb`, `arrow-array`, and `arrow-schema` dependencies are gated behind the `vector-lancedb` feature flag. LanceDB remains in the default feature set so existing builds are unaffected. Build without vector backends using `--no-default-features` for lighter binaries.
14
+
15
+
### Fixed
16
+
-**README restructured**: Tighter positioning as "policy-governed agent runtime", trimmed capabilities table, simplified DSL example, softened benchmark claims, clarified Community/Enterprise editions
17
+
-**Documentation alignment**: Docs index, SECURITY.md support matrix, Dockerfile port comments, and all translations updated to match
18
+
-**Version consistency**: Fixed Rust version mismatch (1.88 → 1.82) across all docs and READMEs
19
+
-**Dead link**: Removed enterprise/README.md reference from public READMEs
20
+
-**Speculative docs**: Removed planned Risk Assessment Algorithm sections from security-model and runtime-architecture docs
Copy file name to clipboardExpand all lines: Cargo.toml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[package]
2
2
name = "symbi"
3
-
version = "1.9.0"
3
+
version = "1.9.1"
4
4
edition = "2021"
5
5
authors = ["Jascha Wanger / ThirdKey.ai"]
6
6
description = "AI-native agent framework for building autonomous, policy-aware agents that can safely collaborate with humans, other agents, and large language models"
@@ -42,11 +42,11 @@ rust-version = "1.82"
42
42
clap = { version = "4.0", features = ["derive"] }
43
43
tokio = { version = "1.0", features = ["full"] }
44
44
sysinfo = "0.30.13"
45
-
symbi-runtime = { path = "crates/runtime", version = "1.9.0", features = ["http-input", "http-api", "cloud-llm", "vector-lancedb", "vector-qdrant"] }
45
+
symbi-runtime = { path = "crates/runtime", version = "1.9.1", features = ["http-input", "http-api", "cloud-llm", "vector-lancedb", "vector-qdrant"] }
46
46
cron = { version = "0.15", optional = true }
47
47
chrono = { version = "0.4", features = ["serde"], optional = true }
0 commit comments