mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-23 12:55:26 +00:00
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:
parent
4be35d5f21
commit
cb72da0147
6 changed files with 208 additions and 208 deletions
406
Cargo.lock
generated
406
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 }
|
||||
|
|
|
|||
|
|
@ -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>"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue