Skip to content

Commit e6cf60c

Browse files
release: v1.0.0
1 parent 67df8a6 commit e6cf60c

13 files changed

Lines changed: 48 additions & 48 deletions

File tree

Cargo.lock

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ Add to your `Cargo.toml`:
127127

128128
```toml
129129
[dependencies]
130-
contextdb-engine = "0.3.4"
131-
contextdb-core = "0.3.4"
130+
contextdb-engine = "1.0.0"
131+
contextdb-core = "1.0.0"
132132
```
133133

134134
## Install

crates/contextdb-cli/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contextdb-cli"
3-
version = "0.3.4"
3+
version = "1.0.0"
44
edition = "2024"
55
authors.workspace = true
66
license.workspace = true
@@ -17,14 +17,14 @@ name = "contextdb-cli"
1717
path = "src/main.rs"
1818

1919
[dependencies]
20-
contextdb-engine = { path = "../contextdb-engine", version = "0.3" }
21-
contextdb-core = { path = "../contextdb-core", version = "0.3" }
22-
contextdb-server = { path = "../contextdb-server", version = "0.3" }
20+
contextdb-engine = { path = "../contextdb-engine", version = "1.0" }
21+
contextdb-core = { path = "../contextdb-core", version = "1.0" }
22+
contextdb-server = { path = "../contextdb-server", version = "1.0" }
2323
rustyline.workspace = true
2424
clap.workspace = true
2525
tokio.workspace = true
2626
tracing.workspace = true
2727
tracing-subscriber.workspace = true
2828

2929
[dev-dependencies]
30-
contextdb-parser = { path = "../contextdb-parser", version = "0.3" }
30+
contextdb-parser = { path = "../contextdb-parser", version = "1.0" }

crates/contextdb-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contextdb-core"
3-
version = "0.3.4"
3+
version = "1.0.0"
44
edition = "2024"
55
authors.workspace = true
66
license.workspace = true

crates/contextdb-engine/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contextdb-engine"
3-
version = "0.3.4"
3+
version = "1.0.0"
44
edition = "2024"
55
authors.workspace = true
66
license.workspace = true
@@ -9,13 +9,13 @@ readme = "../../README.md"
99
description = "Embedded database engine for agentic memory — relational, graph, and vector under unified MVCC transactions"
1010

1111
[dependencies]
12-
contextdb-core = { path = "../contextdb-core", version = "0.3" }
13-
contextdb-tx = { path = "../contextdb-tx", version = "0.3" }
14-
contextdb-relational = { path = "../contextdb-relational", version = "0.3" }
15-
contextdb-graph = { path = "../contextdb-graph", version = "0.3" }
16-
contextdb-vector = { path = "../contextdb-vector", version = "0.3" }
17-
contextdb-parser = { path = "../contextdb-parser", version = "0.3" }
18-
contextdb-planner = { path = "../contextdb-planner", version = "0.3" }
12+
contextdb-core = { path = "../contextdb-core", version = "1.0" }
13+
contextdb-tx = { path = "../contextdb-tx", version = "1.0" }
14+
contextdb-relational = { path = "../contextdb-relational", version = "1.0" }
15+
contextdb-graph = { path = "../contextdb-graph", version = "1.0" }
16+
contextdb-vector = { path = "../contextdb-vector", version = "1.0" }
17+
contextdb-parser = { path = "../contextdb-parser", version = "1.0" }
18+
contextdb-planner = { path = "../contextdb-planner", version = "1.0" }
1919
roaring.workspace = true
2020
uuid.workspace = true
2121
parking_lot.workspace = true

crates/contextdb-graph/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contextdb-graph"
3-
version = "0.3.4"
3+
version = "1.0.0"
44
edition = "2024"
55
authors.workspace = true
66
license.workspace = true
@@ -9,7 +9,7 @@ readme = "../../README.md"
99
description = "Graph executor for contextdb — bounded BFS, DAG enforcement, typed edges"
1010

1111
[dependencies]
12-
contextdb-core = { path = "../contextdb-core", version = "0.3" }
13-
contextdb-tx = { path = "../contextdb-tx", version = "0.3" }
12+
contextdb-core = { path = "../contextdb-core", version = "1.0" }
13+
contextdb-tx = { path = "../contextdb-tx", version = "1.0" }
1414
parking_lot.workspace = true
1515
uuid.workspace = true

crates/contextdb-parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contextdb-parser"
3-
version = "0.3.4"
3+
version = "1.0.0"
44
edition = "2024"
55
authors.workspace = true
66
license.workspace = true
@@ -9,7 +9,7 @@ readme = "../../README.md"
99
description = "SQL parser for contextdb with GRAPH_TABLE and vector extensions"
1010

1111
[dependencies]
12-
contextdb-core = { path = "../contextdb-core", version = "0.3" }
12+
contextdb-core = { path = "../contextdb-core", version = "1.0" }
1313
pest.workspace = true
1414
pest_derive.workspace = true
1515

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contextdb-planner"
3-
version = "0.3.4"
3+
version = "1.0.0"
44
edition = "2024"
55
authors.workspace = true
66
license.workspace = true
@@ -9,5 +9,5 @@ readme = "../../README.md"
99
description = "Rule-based query planner for contextdb"
1010

1111
[dependencies]
12-
contextdb-core = { path = "../contextdb-core", version = "0.3" }
13-
contextdb-parser = { path = "../contextdb-parser", version = "0.3" }
12+
contextdb-core = { path = "../contextdb-core", version = "1.0" }
13+
contextdb-parser = { path = "../contextdb-parser", version = "1.0" }
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contextdb-relational"
3-
version = "0.3.4"
3+
version = "1.0.0"
44
edition = "2024"
55
authors.workspace = true
66
license.workspace = true
@@ -9,7 +9,7 @@ readme = "../../README.md"
99
description = "Relational executor for contextdb — scan, insert, upsert, delete"
1010

1111
[dependencies]
12-
contextdb-core = { path = "../contextdb-core", version = "0.3" }
13-
contextdb-tx = { path = "../contextdb-tx", version = "0.3" }
12+
contextdb-core = { path = "../contextdb-core", version = "1.0" }
13+
contextdb-tx = { path = "../contextdb-tx", version = "1.0" }
1414
parking_lot.workspace = true
1515
uuid.workspace = true

crates/contextdb-server/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contextdb-server"
3-
version = "0.3.4"
3+
version = "1.0.0"
44
edition = "2024"
55
authors.workspace = true
66
license.workspace = true
@@ -9,9 +9,9 @@ readme = "../../README.md"
99
description = "Sync server for contextdb — NATS-based replication with conflict resolution"
1010

1111
[dependencies]
12-
contextdb-engine = { path = "../contextdb-engine", version = "0.3" }
13-
contextdb-core = { path = "../contextdb-core", version = "0.3" }
14-
contextdb-tx = { path = "../contextdb-tx", version = "0.3" }
12+
contextdb-engine = { path = "../contextdb-engine", version = "1.0" }
13+
contextdb-core = { path = "../contextdb-core", version = "1.0" }
14+
contextdb-tx = { path = "../contextdb-tx", version = "1.0" }
1515
uuid.workspace = true
1616
tokio.workspace = true
1717
async-nats.workspace = true

0 commit comments

Comments
 (0)