Skip to content

Commit ea65b00

Browse files
runonthespotclaude
andcommitted
fix: update internal dependency versions to 0.3.8
Update all internal crate dependencies from 0.3.2 to 0.3.8 to match the workspace version. This fixes the crates.io publish step which was failing due to version mismatches between published crates (0.3.5) and the workspace dependencies (0.3.2). All internal dependencies now correctly reference version 0.3.8. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 62a949a commit ea65b00

7 files changed

Lines changed: 19 additions & 19 deletions

File tree

ck-ann/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["search", "ann", "vector"]
1111
categories = ["algorithms"]
1212

1313
[dependencies]
14-
ck-core = { version = "0.3.2", path = "../ck-core" }
14+
ck-core = { version = "0.3.8", path = "../ck-core" }
1515

1616
anyhow = { workspace = true }
1717
serde = { workspace = true }

ck-chunk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["parsing", "chunking", "tree-sitter"]
1111
categories = ["parsing"]
1212

1313
[dependencies]
14-
ck-core = { version = "0.3.2", path = "../ck-core" }
14+
ck-core = { version = "0.3.8", path = "../ck-core" }
1515

1616
anyhow = { workspace = true }
1717
serde = { workspace = true }

ck-cli/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ name = "ck"
1717
path = "src/main.rs"
1818

1919
[dependencies]
20-
ck-core = { version = "0.3.2", path = "../ck-core" }
21-
ck-index = { version = "0.3.2", path = "../ck-index" }
22-
ck-engine = { version = "0.3.2", path = "../ck-engine" }
23-
ck-chunk = { version = "0.3.2", path = "../ck-chunk" }
24-
ck-embed = { version = "0.3.2", path = "../ck-embed" }
25-
ck-ann = { version = "0.3.2", path = "../ck-ann" }
26-
ck-models = { version = "0.3.2", path = "../ck-models" }
20+
ck-core = { version = "0.3.8", path = "../ck-core" }
21+
ck-index = { version = "0.3.8", path = "../ck-index" }
22+
ck-engine = { version = "0.3.8", path = "../ck-engine" }
23+
ck-chunk = { version = "0.3.8", path = "../ck-chunk" }
24+
ck-embed = { version = "0.3.8", path = "../ck-embed" }
25+
ck-ann = { version = "0.3.8", path = "../ck-ann" }
26+
ck-models = { version = "0.3.8", path = "../ck-models" }
2727

2828
anyhow = { workspace = true }
2929
clap = { workspace = true }

ck-embed/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["embedding", "nlp", "semantic"]
1111
categories = ["science"]
1212

1313
[dependencies]
14-
ck-core = { version = "0.3.2", path = "../ck-core" }
14+
ck-core = { version = "0.3.8", path = "../ck-core" }
1515

1616
anyhow = { workspace = true }
1717
serde = { workspace = true }

ck-engine/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ keywords = ["search", "engine", "semantic"]
1111
categories = ["algorithms"]
1212

1313
[dependencies]
14-
ck-core = { version = "0.3.2", path = "../ck-core" }
15-
ck-index = { version = "0.3.2", path = "../ck-index" }
16-
ck-embed = { version = "0.3.2", path = "../ck-embed" }
17-
ck-ann = { version = "0.3.2", path = "../ck-ann" }
18-
ck-chunk = { version = "0.3.2", path = "../ck-chunk" }
14+
ck-core = { version = "0.3.8", path = "../ck-core" }
15+
ck-index = { version = "0.3.8", path = "../ck-index" }
16+
ck-embed = { version = "0.3.8", path = "../ck-embed" }
17+
ck-ann = { version = "0.3.8", path = "../ck-ann" }
18+
ck-chunk = { version = "0.3.8", path = "../ck-chunk" }
1919
serde_json = { workspace = true }
2020

2121
anyhow = { workspace = true }

ck-index/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ keywords = ["indexing", "search", "storage"]
1111
categories = ["database-implementations"]
1212

1313
[dependencies]
14-
ck-core = { version = "0.3.2", path = "../ck-core" }
15-
ck-chunk = { version = "0.3.2", path = "../ck-chunk" }
16-
ck-embed = { version = "0.3.2", path = "../ck-embed" }
14+
ck-core = { version = "0.3.8", path = "../ck-core" }
15+
ck-chunk = { version = "0.3.8", path = "../ck-chunk" }
16+
ck-embed = { version = "0.3.8", path = "../ck-embed" }
1717

1818
anyhow = { workspace = true }
1919
serde = { workspace = true }

ck-models/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["models", "config", "registry"]
1111
categories = ["config"]
1212

1313
[dependencies]
14-
ck-core = { version = "0.3.2", path = "../ck-core" }
14+
ck-core = { version = "0.3.8", path = "../ck-core" }
1515

1616
anyhow = { workspace = true }
1717
serde = { workspace = true }

0 commit comments

Comments
 (0)