Prepare v0.2.2 release

This commit is contained in:
andrew 2026-04-14 20:13:00 +03:00
parent f2ebdb3d8d
commit 33bdab1fcb
7 changed files with 103 additions and 59 deletions

View file

@ -1,18 +1,21 @@
[package]
name = "omnigraph-cli"
version = "0.2.1"
version = "0.2.2"
edition = "2024"
description = "CLI for the Omnigraph graph database."
license = "MIT"
repository = "https://github.com/ModernRelay/omnigraph"
homepage = "https://github.com/ModernRelay/omnigraph"
documentation = "https://docs.rs/omnigraph-cli"
[[bin]]
name = "omnigraph"
path = "src/main.rs"
[dependencies]
omnigraph = { path = "../omnigraph", version = "0.2.1" }
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.2.1" }
omnigraph-server = { path = "../omnigraph-server", version = "0.2.1" }
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.2.2" }
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.2.2" }
omnigraph-server = { path = "../omnigraph-server", version = "0.2.2" }
clap = { workspace = true }
color-eyre = { workspace = true }
serde = { workspace = true }

View file

@ -1,9 +1,12 @@
[package]
name = "omnigraph-compiler"
version = "0.2.1"
version = "0.2.2"
edition = "2024"
description = "Schema/query compiler for Omnigraph. Zero Lance dependency."
license = "MIT"
repository = "https://github.com/ModernRelay/omnigraph"
homepage = "https://github.com/ModernRelay/omnigraph"
documentation = "https://docs.rs/omnigraph-compiler"
[dependencies]
arrow-array = { workspace = true }

View file

@ -1,17 +1,20 @@
[package]
name = "omnigraph-server"
version = "0.2.1"
version = "0.2.2"
edition = "2024"
description = "HTTP server for the Omnigraph graph database."
license = "MIT"
repository = "https://github.com/ModernRelay/omnigraph"
homepage = "https://github.com/ModernRelay/omnigraph"
documentation = "https://docs.rs/omnigraph-server"
[[bin]]
name = "omnigraph-server"
path = "src/main.rs"
[dependencies]
omnigraph = { path = "../omnigraph", version = "0.2.1" }
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.2.1" }
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.2.2" }
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.2.2" }
axum = { workspace = true }
clap = { workspace = true }
color-eyre = { workspace = true }

View file

@ -1,16 +1,22 @@
[package]
name = "omnigraph"
version = "0.2.1"
name = "omnigraph-engine"
version = "0.2.2"
edition = "2024"
description = "Lance-native graph database with git-style branching."
description = "Runtime engine for the Omnigraph graph database."
license = "MIT"
repository = "https://github.com/ModernRelay/omnigraph"
homepage = "https://github.com/ModernRelay/omnigraph"
documentation = "https://docs.rs/omnigraph-engine"
[lib]
name = "omnigraph"
[features]
default = []
failpoints = ["dep:fail", "fail/failpoints"]
[dependencies]
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.2.1" }
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.2.2" }
lance = { workspace = true }
lance-datafusion = { workspace = true }
lance-file = { workspace = true }
@ -41,7 +47,7 @@ async-trait = { workspace = true }
url = { workspace = true }
[dev-dependencies]
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.2.1" }
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.2.2" }
tokio = { workspace = true }
lance-namespace-impls = { workspace = true }
serial_test = "3"