Skip to content

Commit 8865de8

Browse files
chore: release main
1 parent 888d5a9 commit 8865de8

File tree

13 files changed

+109
-28
lines changed

13 files changed

+109
-28
lines changed

.release-please-manifest.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"crates/codemem-core": "0.11.0",
3-
"crates/codemem-storage": "0.11.0",
4-
"crates/codemem-embeddings": "0.11.0",
5-
"crates/codemem-engine": "0.11.0",
6-
"crates/codemem": "0.11.0",
7-
"crates/codemem-bench": "0.8.4"
2+
"crates/codemem-core": "0.12.0",
3+
"crates/codemem-storage": "0.12.0",
4+
"crates/codemem-embeddings": "0.11.1",
5+
"crates/codemem-engine": "0.12.0",
6+
"crates/codemem": "0.12.0",
7+
"crates/codemem-bench": "0.8.5"
88
}

Cargo.lock

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

crates/codemem-bench/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codemem-bench"
3-
version = "0.8.4"
3+
version = "0.8.5"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -11,8 +11,8 @@ description = "Criterion benchmarks for Codemem"
1111
publish = false
1212

1313
[dependencies]
14-
codemem-core = { path = "../codemem-core", version = "0.11.0" }
15-
codemem-storage = { path = "../codemem-storage", version = "0.11.0" }
14+
codemem-core = { path = "../codemem-core", version = "0.12.0" }
15+
codemem-storage = { path = "../codemem-storage", version = "0.12.0" }
1616
criterion = { workspace = true }
1717
uuid = { workspace = true }
1818
chrono = { workspace = true }

crates/codemem-core/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.12.0](https://github.com/cogniplex/codemem/compare/v0.11.0...v0.12.0) (2026-03-13)
4+
5+
6+
### Features
7+
8+
* LSP enrichment + cross-repo linking pipeline ([#33](https://github.com/cogniplex/codemem/issues/33)) ([a74bde5](https://github.com/cogniplex/codemem/commit/a74bde595b567f6c79c58ff19c134f580258348a))
9+
10+
11+
### Bug Fixes
12+
13+
* namespace-scoped file hashes, configurable embed batch size, hook storage ([#35](https://github.com/cogniplex/codemem/issues/35)) ([1c5bb9c](https://github.com/cogniplex/codemem/commit/1c5bb9c30ee9cce6868e60fb7a9400c2474a5d1c))
14+
315
## [0.11.0](https://github.com/cogniplex/codemem/compare/v0.10.1...v0.11.0) (2026-03-11)
416

517

crates/codemem-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 = "codemem-core"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true

crates/codemem-embeddings/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.11.1](https://github.com/cogniplex/codemem/compare/v0.11.0...v0.11.1) (2026-03-13)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* codemem-core bumped from 0.11.0 to 0.12.0
11+
312
## [0.11.0](https://github.com/cogniplex/codemem/compare/v0.10.1...v0.11.0) (2026-03-11)
413

514

crates/codemem-embeddings/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codemem-embeddings"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -16,7 +16,7 @@ cuda = ["candle-core/cuda", "candle-nn/cuda", "candle-transformers/cuda"]
1616
accelerate = ["candle-core/accelerate", "candle-nn/accelerate", "candle-transformers/accelerate"]
1717

1818
[dependencies]
19-
codemem-core = { path = "../codemem-core", version = "0.11.0" }
19+
codemem-core = { path = "../codemem-core", version = "0.12.0" }
2020
candle-core = { workspace = true }
2121
candle-nn = { workspace = true }
2222
candle-transformers = { workspace = true }

crates/codemem-engine/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## [0.12.0](https://github.com/cogniplex/codemem/compare/v0.11.0...v0.12.0) (2026-03-13)
4+
5+
6+
### Features
7+
8+
* LSP enrichment + cross-repo linking pipeline ([#33](https://github.com/cogniplex/codemem/issues/33)) ([a74bde5](https://github.com/cogniplex/codemem/commit/a74bde595b567f6c79c58ff19c134f580258348a))
9+
10+
11+
### Bug Fixes
12+
13+
* namespace-scoped file hashes, configurable embed batch size, hook storage ([#35](https://github.com/cogniplex/codemem/issues/35)) ([1c5bb9c](https://github.com/cogniplex/codemem/commit/1c5bb9c30ee9cce6868e60fb7a9400c2474a5d1c))
14+
15+
16+
### Dependencies
17+
18+
* The following workspace dependencies were updated
19+
* dependencies
20+
* codemem-core bumped from 0.11.0 to 0.12.0
21+
* codemem-storage bumped from 0.11.0 to 0.12.0
22+
* codemem-embeddings bumped from 0.11.0 to 0.11.1
23+
324
## [0.11.0](https://github.com/cogniplex/codemem/compare/v0.10.3...v0.11.0) (2026-03-11)
425

526

crates/codemem-engine/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codemem-engine"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -14,9 +14,9 @@ cuda = ["codemem-embeddings/cuda"]
1414
accelerate = ["codemem-embeddings/accelerate"]
1515

1616
[dependencies]
17-
codemem-core = { path = "../codemem-core", version = "0.11.0" }
18-
codemem-storage = { path = "../codemem-storage", version = "0.11.0" }
19-
codemem-embeddings = { path = "../codemem-embeddings", version = "0.11.0" }
17+
codemem-core = { path = "../codemem-core", version = "0.12.0" }
18+
codemem-storage = { path = "../codemem-storage", version = "0.12.0" }
19+
codemem-embeddings = { path = "../codemem-embeddings", version = "0.11.1" }
2020
serde = { workspace = true }
2121
serde_json = { workspace = true }
2222
sha2 = { workspace = true }

crates/codemem-storage/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [0.12.0](https://github.com/cogniplex/codemem/compare/v0.11.0...v0.12.0) (2026-03-13)
4+
5+
6+
### Features
7+
8+
* LSP enrichment + cross-repo linking pipeline ([#33](https://github.com/cogniplex/codemem/issues/33)) ([a74bde5](https://github.com/cogniplex/codemem/commit/a74bde595b567f6c79c58ff19c134f580258348a))
9+
10+
11+
### Bug Fixes
12+
13+
* namespace-scoped file hashes, configurable embed batch size, hook storage ([#35](https://github.com/cogniplex/codemem/issues/35)) ([1c5bb9c](https://github.com/cogniplex/codemem/commit/1c5bb9c30ee9cce6868e60fb7a9400c2474a5d1c))
14+
15+
16+
### Dependencies
17+
18+
* The following workspace dependencies were updated
19+
* dependencies
20+
* codemem-core bumped from 0.11.0 to 0.12.0
21+
322
## [0.11.0](https://github.com/cogniplex/codemem/compare/v0.10.1...v0.11.0) (2026-03-11)
423

524

0 commit comments

Comments
 (0)