Skip to content

Commit 6e048ed

Browse files
committed
chore: bump version to v0.8.0 for release
1 parent 9ddf891 commit 6e048ed

File tree

8 files changed

+26
-19
lines changed

8 files changed

+26
-19
lines changed

.claude/settings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"WebFetch(domain:docs.knowledgator.com)"
5+
]
6+
}
7+
}

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ resolver = "2"
33
members = ["crates/*"]
44

55
[workspace.package]
6-
version = "0.7.0"
6+
version = "0.8.0"
77
edition = "2024"
88
license = "MIT"
99
repository = "https://github.com/rohansx/ctxgraph"
10-
description = "Local-first context graph engine for AI agents and human teams"
10+
description = "Privacy-first knowledge graph engine for AI agents. Better quality, 6x cheaper than Graphiti."
1111

1212
[workspace.dependencies]
1313
chrono = { version = "0.4", features = ["serde"] }

crates/ctxgraph-cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ name = "ctxgraph"
1111
path = "src/main.rs"
1212

1313
[dependencies]
14-
ctxgraph = { version = "0.7.0", path = "../ctxgraph-core" }
15-
ctxgraph-extract = { version = "0.7.0", path = "../ctxgraph-extract" }
16-
ctxgraph-mcp = { version = "0.7.0", path = "../ctxgraph-mcp" }
17-
ctxgraph-embed = { version = "0.7.0", path = "../ctxgraph-embed" }
14+
ctxgraph = { version = "0.8.0", path = "../ctxgraph-core" }
15+
ctxgraph-extract = { version = "0.8.0", path = "../ctxgraph-extract" }
16+
ctxgraph-mcp = { version = "0.8.0", path = "../ctxgraph-mcp" }
17+
ctxgraph-embed = { version = "0.8.0", path = "../ctxgraph-embed" }
1818
clap = { workspace = true }
1919
serde_json = { workspace = true }
2020
chrono = { workspace = true }

crates/ctxgraph-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ thiserror = { workspace = true }
1414
uuid = { workspace = true }
1515
rusqlite = { workspace = true }
1616
toml = { workspace = true }
17-
ctxgraph-extract = { path = "../ctxgraph-extract", version = "0.7.0", optional = true }
17+
ctxgraph-extract = { path = "../ctxgraph-extract", version = "0.8.0", optional = true }
1818
strsim = { workspace = true }
1919

2020
[features]

crates/ctxgraph-mcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ name = "ctxgraph-mcp"
1515
path = "src/main.rs"
1616

1717
[dependencies]
18-
ctxgraph = { path = "../ctxgraph-core", version = "0.7.0" }
19-
ctxgraph-embed = { path = "../ctxgraph-embed", version = "0.7.0" }
18+
ctxgraph = { path = "../ctxgraph-core", version = "0.8.0" }
19+
ctxgraph-embed = { path = "../ctxgraph-embed", version = "0.8.0" }
2020
tokio = { workspace = true, features = ["full"] }
2121
serde = { workspace = true, features = ["derive"] }
2222
serde_json = { workspace = true }

docs/ARCHITECTURE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ ctxgraph-sdk ──────┤
9494

9595
| Crate | Purpose | Key deps | Status |
9696
|---|---|---|---|
97-
| `ctxgraph-core` | Engine: types, storage, query, temporal logic | rusqlite, chrono, uuid, serde | Shipped (v0.7.0) |
98-
| `ctxgraph-extract` | Three-tier extraction pipeline | ort, tokenizers, strsim, reqwest | Shipped (v0.7.0) |
99-
| `ctxgraph-embed` | Local embedding generation (384-dim) | fastembed | Shipped (v0.7.0) |
97+
| `ctxgraph-core` | Engine: types, storage, query, temporal logic | rusqlite, chrono, uuid, serde | Shipped (v0.8.0) |
98+
| `ctxgraph-extract` | Three-tier extraction pipeline | ort, tokenizers, strsim, reqwest | Shipped (v0.8.0) |
99+
| `ctxgraph-embed` | Local embedding generation (384-dim) | fastembed | Shipped (v0.8.0) |
100100
| `ctxgraph-ingest` | Connectors: git, shell, FS, browser, Screenpipe | git2, notify, rusqlite (browser) | **New — Phase 1** |
101-
| `ctxgraph-mcp` | MCP server for AI coding tools | tokio, serde_json | Shipped (v0.7.0) |
101+
| `ctxgraph-mcp` | MCP server for AI coding tools | tokio, serde_json | Shipped (v0.8.0) |
102102
| `ctxgraph-cli` | CLI + daemon mode + TUI dashboard | clap, colored, ratatui | Partial (CLI shipped, daemon + TUI in Phase 2) |
103103
| `ctxgraph-sdk` | Re-export crate for embedding in Rust apps || Shipped |
104104
| `ctxgraph-privacy` | PII detection and entity redaction (CloakPipe) || Phase 4 |

docs/ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
---
3030

31-
## What Exists (v0.7.0 — Shipped)
31+
## What Exists (v0.8.0 — Shipped)
3232

3333
| Component | Status | Notes |
3434
|---|---|---|

0 commit comments

Comments
 (0)