chore: bump workspace to v2.2.0, sona to v0.2.0

Version bump for new features from #364:
- ruvector-graph: delete_edges_batch, has_edge, get_edges_for_nodes, FloatArray
- ruvector-core: zero-copy insert_batch (impl AsRef)
- ruvector-gnn: ndarray 0.17.2
- ruvector-sona: MicroLoRA set_weights + coordinator persistence

Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
ruv 2026-04-20 13:56:53 -04:00
parent 4be35d5f21
commit cb72da0147
6 changed files with 208 additions and 208 deletions

406
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -195,7 +195,7 @@ members = [
resolver = "2"
[workspace.package]
version = "2.1.0"
version = "2.2.0"
edition = "2021"
rust-version = "1.77"
license = "MIT"

View file

@ -31,7 +31,7 @@ cognitum-gate-kernel = { version = "0.1.0", features = ["std"], optional = true
# Self-optimizing thresholds with EWC++ (sona)
# Provides: SonaEngine, MicroLoRA, EwcPlusPlus, ReasoningBank
ruvector-sona = { version = "0.1.4", features = ["serde-support"], optional = true }
ruvector-sona = { version = "0.2.0", path = "../sona", features = ["serde-support"], optional = true }
# Learned restriction maps with GNN (ruvector-gnn)
# Provides: RuvectorLayer, ElasticWeightConsolidation, ReplayBuffer

View file

@ -140,7 +140,7 @@ ruvector-mincut-gated-transformer = { version = "0.1.0", path = "../ruvector-min
ruvector-solver = { version = "2.0", path = "../ruvector-solver", features = ["full"], optional = true }
ruvector-math = { version = "2.0", path = "../ruvector-math", optional = true }
ruvector-attention = { version = "2.0", path = "../ruvector-attention", optional = true }
ruvector-sona = { version = "0.1", path = "../sona", features = ["serde-support"], optional = true }
ruvector-sona = { version = "0.2", path = "../sona", features = ["serde-support"], optional = true }
ruvector-domain-expansion = { version = "2.0", path = "../ruvector-domain-expansion", optional = true }
# Optional: Use ruvector-core for shared implementations

View file

@ -14,7 +14,7 @@ categories = ["science", "algorithms"]
[dependencies]
# Ruvector integration
ruvector-core = { version = "2.0", path = "../ruvector-core", default-features = false, features = ["storage", "hnsw", "parallel", "simd"] }
ruvector-sona = { version = "0.1.6", path = "../sona", default-features = false, features = ["serde-support"] }
ruvector-sona = { version = "0.2.0", path = "../sona", default-features = false, features = ["serde-support"] }
# Optional Ruvector crates for advanced features
ruvector-attention = { version = "2.0", path = "../ruvector-attention", optional = true }

View file

@ -1,6 +1,6 @@
[package]
name = "ruvector-sona"
version = "0.1.9"
version = "0.2.0"
edition = "2021"
rust-version = "1.70"
authors = ["RuVector Team <team@ruvector.dev>"]