From 40ed575e7e3b0410e9295545f3b957c0f623e002 Mon Sep 17 00:00:00 2001 From: andrew Date: Sat, 11 Apr 2026 05:33:04 +0300 Subject: [PATCH] Set public release version to 0.1.0 --- crates/omnigraph-cli/Cargo.toml | 8 ++++---- crates/omnigraph-compiler/Cargo.toml | 2 +- crates/omnigraph-server/Cargo.toml | 6 +++--- crates/omnigraph/Cargo.toml | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/crates/omnigraph-cli/Cargo.toml b/crates/omnigraph-cli/Cargo.toml index 380fed2..254ea79 100644 --- a/crates/omnigraph-cli/Cargo.toml +++ b/crates/omnigraph-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "omnigraph-cli" -version = "0.4.0" +version = "0.1.0" edition = "2024" description = "CLI for the Omnigraph graph database." license = "MIT" @@ -10,9 +10,9 @@ name = "omnigraph" path = "src/main.rs" [dependencies] -omnigraph = { path = "../omnigraph", version = "0.4.0" } -omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.4.0" } -omnigraph-server = { path = "../omnigraph-server", version = "0.4.0" } +omnigraph = { path = "../omnigraph", version = "0.1.0" } +omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.1.0" } +omnigraph-server = { path = "../omnigraph-server", version = "0.1.0" } clap = { workspace = true } color-eyre = { workspace = true } serde = { workspace = true } diff --git a/crates/omnigraph-compiler/Cargo.toml b/crates/omnigraph-compiler/Cargo.toml index c94e324..d6ac7ad 100644 --- a/crates/omnigraph-compiler/Cargo.toml +++ b/crates/omnigraph-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "omnigraph-compiler" -version = "0.4.0" +version = "0.1.0" edition = "2024" description = "Schema/query compiler for Omnigraph. Zero Lance dependency." license = "MIT" diff --git a/crates/omnigraph-server/Cargo.toml b/crates/omnigraph-server/Cargo.toml index 7d789b6..362996d 100644 --- a/crates/omnigraph-server/Cargo.toml +++ b/crates/omnigraph-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "omnigraph-server" -version = "0.4.0" +version = "0.1.0" edition = "2024" description = "HTTP server for the Omnigraph graph database." license = "MIT" @@ -10,8 +10,8 @@ name = "omnigraph-server" path = "src/main.rs" [dependencies] -omnigraph = { path = "../omnigraph", version = "0.4.0" } -omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.4.0" } +omnigraph = { path = "../omnigraph", version = "0.1.0" } +omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.1.0" } axum = { workspace = true } clap = { workspace = true } color-eyre = { workspace = true } diff --git a/crates/omnigraph/Cargo.toml b/crates/omnigraph/Cargo.toml index ba61c0c..3e2089b 100644 --- a/crates/omnigraph/Cargo.toml +++ b/crates/omnigraph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "omnigraph" -version = "0.4.0" +version = "0.1.0" edition = "2024" description = "Lance-native graph database with git-style branching." license = "MIT" @@ -10,7 +10,7 @@ default = [] failpoints = ["dep:fail", "fail/failpoints"] [dependencies] -omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.4.0" } +omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.1.0" } lance = { workspace = true } lance-datafusion = { workspace = true } lance-file = { workspace = true } @@ -41,7 +41,7 @@ async-trait = { workspace = true } url = { workspace = true } [dev-dependencies] -omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.4.0" } +omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.1.0" } tokio = { workspace = true } lance-namespace-impls = { workspace = true } serial_test = "3"