chore(release): bump version to 0.8.0 (#313)

This commit is contained in:
Ragnor Comerford 2026-06-29 12:38:24 +02:00 committed by GitHub
parent e7e057e26d
commit b20d7bb82e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 35 additions and 39 deletions

View file

@ -16,7 +16,7 @@ Tools that support `@`-imports (Claude Code) auto-include all three files via th
`CLAUDE.md` is a symlink to this file — there is exactly one source of truth. Edit `AGENTS.md`. `CLAUDE.md` is a symlink to this file — there is exactly one source of truth. Edit `AGENTS.md`.
**Version surveyed:** 0.7.2 **Version surveyed:** 0.8.0
**Workspace crates:** `omnigraph-compiler`, `omnigraph` (engine), `omnigraph-policy`, `omnigraph-api-types` (shared HTTP wire DTOs), `omnigraph-cluster`, `omnigraph-cli`, `omnigraph-server` **Workspace crates:** `omnigraph-compiler`, `omnigraph` (engine), `omnigraph-policy`, `omnigraph-api-types` (shared HTTP wire DTOs), `omnigraph-cluster`, `omnigraph-cli`, `omnigraph-server`
**Storage substrate:** Lance 7.x (columnar, versioned, branchable) **Storage substrate:** Lance 7.x (columnar, versioned, branchable)
**License:** MIT **License:** MIT

14
Cargo.lock generated
View file

@ -4851,7 +4851,7 @@ dependencies = [
[[package]] [[package]]
name = "omnigraph-api-types" name = "omnigraph-api-types"
version = "0.7.2" version = "0.8.0"
dependencies = [ dependencies = [
"omnigraph-compiler", "omnigraph-compiler",
"omnigraph-engine", "omnigraph-engine",
@ -4862,7 +4862,7 @@ dependencies = [
[[package]] [[package]]
name = "omnigraph-cli" name = "omnigraph-cli"
version = "0.7.2" version = "0.8.0"
dependencies = [ dependencies = [
"assert_cmd", "assert_cmd",
"clap", "clap",
@ -4886,7 +4886,7 @@ dependencies = [
[[package]] [[package]]
name = "omnigraph-cluster" name = "omnigraph-cluster"
version = "0.7.2" version = "0.8.0"
dependencies = [ dependencies = [
"fail", "fail",
"omnigraph-compiler", "omnigraph-compiler",
@ -4905,7 +4905,7 @@ dependencies = [
[[package]] [[package]]
name = "omnigraph-compiler" name = "omnigraph-compiler"
version = "0.7.2" version = "0.8.0"
dependencies = [ dependencies = [
"ahash", "ahash",
"arrow-array", "arrow-array",
@ -4924,7 +4924,7 @@ dependencies = [
[[package]] [[package]]
name = "omnigraph-engine" name = "omnigraph-engine"
version = "0.7.2" version = "0.8.0"
dependencies = [ dependencies = [
"arc-swap", "arc-swap",
"arrow-array", "arrow-array",
@ -4969,7 +4969,7 @@ dependencies = [
[[package]] [[package]]
name = "omnigraph-policy" name = "omnigraph-policy"
version = "0.7.2" version = "0.8.0"
dependencies = [ dependencies = [
"cedar-policy", "cedar-policy",
"clap", "clap",
@ -4982,7 +4982,7 @@ dependencies = [
[[package]] [[package]]
name = "omnigraph-server" name = "omnigraph-server"
version = "0.7.2" version = "0.8.0"
dependencies = [ dependencies = [
"arc-swap", "arc-swap",
"async-trait", "async-trait",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "omnigraph-api-types" name = "omnigraph-api-types"
version = "0.7.2" version = "0.8.0"
edition = "2024" edition = "2024"
description = "Shared HTTP wire DTOs for Omnigraph — request/response types and engine-result → DTO mappings used by both omnigraph-server and omnigraph-cli (RFC-009). Plain serde/utoipa types; no transport or server internals." description = "Shared HTTP wire DTOs for Omnigraph — request/response types and engine-result → DTO mappings used by both omnigraph-server and omnigraph-cli (RFC-009). Plain serde/utoipa types; no transport or server internals."
license = "MIT" license = "MIT"
@ -9,8 +9,8 @@ homepage = "https://github.com/ModernRelay/omnigraph"
documentation = "https://docs.rs/omnigraph-api-types" documentation = "https://docs.rs/omnigraph-api-types"
[dependencies] [dependencies]
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.7.2" } omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.8.0" }
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.7.2" } omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
serde = { workspace = true } serde = { workspace = true }
serde_json = { workspace = true } serde_json = { workspace = true }
utoipa = { workspace = true } utoipa = { workspace = true }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "omnigraph-cli" name = "omnigraph-cli"
version = "0.7.2" version = "0.8.0"
edition = "2024" edition = "2024"
description = "CLI for the Omnigraph graph database." description = "CLI for the Omnigraph graph database."
license = "MIT" license = "MIT"
@ -13,12 +13,12 @@ name = "omnigraph"
path = "src/main.rs" path = "src/main.rs"
[dependencies] [dependencies]
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.7.2" } omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.8.0" }
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.7.2" } omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
omnigraph-api-types = { path = "../omnigraph-api-types", version = "0.7.2" } omnigraph-api-types = { path = "../omnigraph-api-types", version = "0.8.0" }
omnigraph-cluster = { path = "../omnigraph-cluster", version = "0.7.2" } omnigraph-cluster = { path = "../omnigraph-cluster", version = "0.8.0" }
omnigraph-policy = { path = "../omnigraph-policy", version = "0.7.2" } omnigraph-policy = { path = "../omnigraph-policy", version = "0.8.0" }
omnigraph-server = { path = "../omnigraph-server", version = "0.7.2" } omnigraph-server = { path = "../omnigraph-server", version = "0.8.0" }
clap = { workspace = true } clap = { workspace = true }
color-eyre = { workspace = true } color-eyre = { workspace = true }
serde = { workspace = true } serde = { workspace = true }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "omnigraph-cluster" name = "omnigraph-cluster"
version = "0.7.2" version = "0.8.0"
edition = "2024" edition = "2024"
description = "Cluster configuration validation, planning, and config-only apply for Omnigraph." description = "Cluster configuration validation, planning, and config-only apply for Omnigraph."
license = "MIT" license = "MIT"
@ -14,8 +14,8 @@ documentation = "https://docs.rs/omnigraph-cluster"
failpoints = ["dep:fail", "fail/failpoints", "omnigraph/failpoints"] failpoints = ["dep:fail", "fail/failpoints", "omnigraph/failpoints"]
[dependencies] [dependencies]
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.7.2" } omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.7.2" } omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.8.0" }
fail = { workspace = true, optional = true } fail = { workspace = true, optional = true }
serde = { workspace = true } serde = { workspace = true }
serde_json = { workspace = true } serde_json = { workspace = true }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "omnigraph-compiler" name = "omnigraph-compiler"
version = "0.7.2" version = "0.8.0"
edition = "2024" edition = "2024"
description = "Schema/query compiler for Omnigraph. Zero Lance dependency." description = "Schema/query compiler for Omnigraph. Zero Lance dependency."
license = "MIT" license = "MIT"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "omnigraph-policy" name = "omnigraph-policy"
version = "0.7.2" version = "0.8.0"
edition = "2024" edition = "2024"
description = "Policy / authorization layer for Omnigraph — Cedar-backed PolicyEngine, PolicyChecker trait, ResourceScope enum." description = "Policy / authorization layer for Omnigraph — Cedar-backed PolicyEngine, PolicyChecker trait, ResourceScope enum."
license = "MIT" license = "MIT"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "omnigraph-server" name = "omnigraph-server"
version = "0.7.2" version = "0.8.0"
edition = "2024" edition = "2024"
description = "HTTP server for the Omnigraph graph database." description = "HTTP server for the Omnigraph graph database."
license = "MIT" license = "MIT"
@ -19,11 +19,11 @@ default = []
aws = ["dep:aws-config", "dep:aws-sdk-secretsmanager"] aws = ["dep:aws-config", "dep:aws-sdk-secretsmanager"]
[dependencies] [dependencies]
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.7.2" } omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.8.0" }
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.7.2" } omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
omnigraph-policy = { path = "../omnigraph-policy", version = "0.7.2" } omnigraph-policy = { path = "../omnigraph-policy", version = "0.8.0" }
omnigraph-api-types = { path = "../omnigraph-api-types", version = "0.7.2" } omnigraph-api-types = { path = "../omnigraph-api-types", version = "0.8.0" }
omnigraph-cluster = { path = "../omnigraph-cluster", version = "0.7.2" } omnigraph-cluster = { path = "../omnigraph-cluster", version = "0.8.0" }
axum = { workspace = true } axum = { workspace = true }
clap = { workspace = true } clap = { workspace = true }
color-eyre = { workspace = true } color-eyre = { workspace = true }

View file

@ -1,6 +1,6 @@
[package] [package]
name = "omnigraph-engine" name = "omnigraph-engine"
version = "0.7.2" version = "0.8.0"
edition = "2024" edition = "2024"
description = "Runtime engine for the Omnigraph graph database." description = "Runtime engine for the Omnigraph graph database."
license = "MIT" license = "MIT"
@ -16,8 +16,8 @@ default = []
failpoints = ["dep:fail", "fail/failpoints"] failpoints = ["dep:fail", "fail/failpoints"]
[dependencies] [dependencies]
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.7.2" } omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
omnigraph-policy = { path = "../omnigraph-policy", version = "0.7.2" } omnigraph-policy = { path = "../omnigraph-policy", version = "0.8.0" }
lance = { workspace = true } lance = { workspace = true }
lance-core = { workspace = true } lance-core = { workspace = true }
lance-datafusion = { workspace = true } lance-datafusion = { workspace = true }
@ -53,7 +53,7 @@ chrono = { workspace = true }
arc-swap = { workspace = true } arc-swap = { workspace = true }
[dev-dependencies] [dev-dependencies]
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.7.2" } omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
tokio = { workspace = true } tokio = { workspace = true }
lance-namespace-impls = { workspace = true } lance-namespace-impls = { workspace = true }
# test-util gates IoStats.requests + assert_io_eq! (failure diagnostics only); dev-dep, # test-util gates IoStats.requests + assert_io_eq! (failure diagnostics only); dev-dep,

View file

@ -1,8 +1,4 @@
# Omnigraph v0.8.0 (in progress) # Omnigraph v0.8.0
> Draft release notes for the next minor. The version line in `AGENTS.md` and the
> crate manifests are bumped when this release is cut — these notes track the
> user-visible delta as the work lands.
This release moves the graph commit lineage into `__manifest` (RFC-013 Phase 7), This release moves the graph commit lineage into `__manifest` (RFC-013 Phase 7),
retires the two legacy commit-graph datasets, and surfaces the storage-format retires the two legacy commit-graph datasets, and surfaces the storage-format

View file

@ -7,7 +7,7 @@
"name": "MIT", "name": "MIT",
"identifier": "MIT" "identifier": "MIT"
}, },
"version": "0.7.2" "version": "0.8.0"
}, },
"paths": { "paths": {
"/graphs": { "/graphs": {