Skip to content

Commit c42c704

Browse files
chore: release master
1 parent cb3fc28 commit c42c704

8 files changed

Lines changed: 80 additions & 12 deletions

File tree

.release-please-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
".": "0.4.0",
3-
"crates/vein-adapter": "0.3.0",
4-
"crates/vein-admin": "0.3.0"
2+
".": "0.5.0",
3+
"crates/vein-adapter": "0.4.0",
4+
"crates/vein-admin": "0.4.0"
55
}

CHANGELOG.md

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

3+
## [0.5.0](https://github.com/contriboss/vein/compare/v0.4.0...v0.5.0) (2026-03-26)
4+
5+
6+
### Features
7+
8+
* add npm support ([#11](https://github.com/contriboss/vein/issues/11)) ([9ac5967](https://github.com/contriboss/vein/commit/9ac5967088852e3d7d0a2c881165663d8ea791ed))
9+
* added docker compose file ([#9](https://github.com/contriboss/vein/issues/9)) ([04773d6](https://github.com/contriboss/vein/commit/04773d601407296e067007a1683f2d11ed2223ff))
10+
* **admin:** add Datastar foundation ([7f9910e](https://github.com/contriboss/vein/commit/7f9910efa075fd05386991997e5d6e910a66a682))
11+
* **admin:** add Datastar refresh to dashboard stats ([e4940ae](https://github.com/contriboss/vein/commit/e4940aef9f373b84c4088c1e045d682e6f9a8b00))
12+
* **admin:** add Datastar search to catalog ([de69c7d](https://github.com/contriboss/vein/commit/de69c7d6cbc151d8e0bafc4d075b2a0ed7ef072e))
13+
* **admin:** migrate dashboard to Tera templates ([9650d85](https://github.com/contriboss/vein/commit/9650d857a919525dcbe709648e9fd21ee276efe4))
14+
* drop loco-rs and use rama&datastar ([#8](https://github.com/contriboss/vein/issues/8)) ([6d74999](https://github.com/contriboss/vein/commit/6d74999eb39c7e586f7bf49715cf9b4fe4f8f387))
15+
* **indexer:** add tree-sitter Ruby symbol indexing with per-version storage ([8e0ae2a](https://github.com/contriboss/vein/commit/8e0ae2a1f870c91d44f2f60fb521a2a1d48f2b63))
16+
* introduce crates proxing ([#10](https://github.com/contriboss/vein/issues/10)) ([28668a5](https://github.com/contriboss/vein/commit/28668a5c3307ad48ad78dfa2f5304bea625cb5df))
17+
* prepare vein-adapter, vein-admin, and vein-admin-migration for crates.io publishing ([495af02](https://github.com/contriboss/vein/commit/495af02a3e1c56b473414c2cde609fb67382caff))
18+
* Treesitter and goblin ([c2ebe25](https://github.com/contriboss/vein/commit/c2ebe25ece5a28b6c2c6f0fccb2e820c1208914d))
19+
* **validate:** add binary architecture validation with goblin for platform mismatch detection ([e39eef6](https://github.com/contriboss/vein/commit/e39eef6ac5f436c3f3042ccd614984703359b8aa))
20+
21+
22+
### Bug Fixes
23+
24+
* address all 14 Copilot PR review issues (NULL comparisons, platform parsing, error handling, tests, code quality) ([d69b3e2](https://github.com/contriboss/vein/commit/d69b3e2c539105196fc6c0dfade5265d6dda99f2))
25+
* address clippy warnings ([966671a](https://github.com/contriboss/vein/commit/966671a53dd68adbc21e7d54a2fb8f15e8a46f9b))
26+
* address copilot review concerns ([2737931](https://github.com/contriboss/vein/commit/2737931ca52328508bf6802344fc7e800b1bb01c))
27+
328
## [0.4.0](https://github.com/contriboss/vein/compare/v0.3.0...v0.4.0) (2025-12-28)
429

530

Cargo.lock

Lines changed: 3 additions & 3 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,7 +3,7 @@ members = ["crates/vein-adapter", "crates/vein-admin"]
33

44
[package]
55
name = "vein"
6-
version = "0.4.0"
6+
version = "0.5.0"
77
edition = "2024"
88
authors = ["Abdelkader Boudih <oss@seuros.com>"]
99
description = "A fast, intelligent multi-ecosystem package proxy/cache"
@@ -75,7 +75,7 @@ chrono-machines = "0.3.1"
7575
# Time handling
7676
chrono = { version = "0.4.44", features = ["serde"] }
7777

78-
vein-adapter = { version = "0.3.0", path = "crates/vein-adapter", default-features = false }
78+
vein-adapter = { version = "0.5.0", path = "crates/vein-adapter", default-features = false }
7979

8080
[dev-dependencies]
8181
tokio-test = "0.4.5"

crates/vein-adapter/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.4.0](https://github.com/contriboss/vein/compare/v0.3.0...v0.4.0) (2026-03-26)
4+
5+
6+
### Features
7+
8+
* add npm support ([#11](https://github.com/contriboss/vein/issues/11)) ([9ac5967](https://github.com/contriboss/vein/commit/9ac5967088852e3d7d0a2c881165663d8ea791ed))
9+
* added docker compose file ([#9](https://github.com/contriboss/vein/issues/9)) ([04773d6](https://github.com/contriboss/vein/commit/04773d601407296e067007a1683f2d11ed2223ff))
10+
* drop loco-rs and use rama&datastar ([#8](https://github.com/contriboss/vein/issues/8)) ([6d74999](https://github.com/contriboss/vein/commit/6d74999eb39c7e586f7bf49715cf9b4fe4f8f387))
11+
* **indexer:** add tree-sitter Ruby symbol indexing with per-version storage ([8e0ae2a](https://github.com/contriboss/vein/commit/8e0ae2a1f870c91d44f2f60fb521a2a1d48f2b63))
12+
* introduce crates proxing ([#10](https://github.com/contriboss/vein/issues/10)) ([28668a5](https://github.com/contriboss/vein/commit/28668a5c3307ad48ad78dfa2f5304bea625cb5df))
13+
* prepare vein-adapter, vein-admin, and vein-admin-migration for crates.io publishing ([495af02](https://github.com/contriboss/vein/commit/495af02a3e1c56b473414c2cde609fb67382caff))
14+
* Treesitter and goblin ([c2ebe25](https://github.com/contriboss/vein/commit/c2ebe25ece5a28b6c2c6f0fccb2e820c1208914d))
15+
16+
17+
### Bug Fixes
18+
19+
* address all 14 Copilot PR review issues (NULL comparisons, platform parsing, error handling, tests, code quality) ([d69b3e2](https://github.com/contriboss/vein/commit/d69b3e2c539105196fc6c0dfade5265d6dda99f2))
20+
* update syntax to rust 2024. ([0779d2e](https://github.com/contriboss/vein/commit/0779d2e9b7563e19a7e24589383a898c4d8da185))
21+
322
## [0.3.0](https://github.com/contriboss/vein/compare/v0.2.1...v0.3.0) (2025-12-28)
423

524

crates/vein-adapter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vein-adapter"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2024"
55
license = "AGPL-3.0-only"
66
authors = ["Abdelkader Boudih <oss@seuros.com>"]

crates/vein-admin/CHANGELOG.md

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

3+
## [0.4.0](https://github.com/contriboss/vein/compare/v0.3.0...v0.4.0) (2026-03-26)
4+
5+
6+
### Features
7+
8+
* added docker compose file ([#9](https://github.com/contriboss/vein/issues/9)) ([04773d6](https://github.com/contriboss/vein/commit/04773d601407296e067007a1683f2d11ed2223ff))
9+
* **admin:** add Datastar foundation ([7f9910e](https://github.com/contriboss/vein/commit/7f9910efa075fd05386991997e5d6e910a66a682))
10+
* **admin:** add Datastar refresh to dashboard stats ([e4940ae](https://github.com/contriboss/vein/commit/e4940aef9f373b84c4088c1e045d682e6f9a8b00))
11+
* **admin:** add Datastar search to catalog ([de69c7d](https://github.com/contriboss/vein/commit/de69c7d6cbc151d8e0bafc4d075b2a0ed7ef072e))
12+
* **admin:** migrate dashboard to Tera templates ([9650d85](https://github.com/contriboss/vein/commit/9650d857a919525dcbe709648e9fd21ee276efe4))
13+
* drop loco-rs and use rama&datastar ([#8](https://github.com/contriboss/vein/issues/8)) ([6d74999](https://github.com/contriboss/vein/commit/6d74999eb39c7e586f7bf49715cf9b4fe4f8f387))
14+
* **indexer:** add tree-sitter Ruby symbol indexing with per-version storage ([8e0ae2a](https://github.com/contriboss/vein/commit/8e0ae2a1f870c91d44f2f60fb521a2a1d48f2b63))
15+
* introduce crates proxing ([#10](https://github.com/contriboss/vein/issues/10)) ([28668a5](https://github.com/contriboss/vein/commit/28668a5c3307ad48ad78dfa2f5304bea625cb5df))
16+
* prepare vein-adapter, vein-admin, and vein-admin-migration for crates.io publishing ([495af02](https://github.com/contriboss/vein/commit/495af02a3e1c56b473414c2cde609fb67382caff))
17+
* Treesitter and goblin ([c2ebe25](https://github.com/contriboss/vein/commit/c2ebe25ece5a28b6c2c6f0fccb2e820c1208914d))
18+
* **validate:** add binary architecture validation with goblin for platform mismatch detection ([e39eef6](https://github.com/contriboss/vein/commit/e39eef6ac5f436c3f3042ccd614984703359b8aa))
19+
20+
21+
### Bug Fixes
22+
23+
* address all 14 Copilot PR review issues (NULL comparisons, platform parsing, error handling, tests, code quality) ([d69b3e2](https://github.com/contriboss/vein/commit/d69b3e2c539105196fc6c0dfade5265d6dda99f2))
24+
* address clippy warnings ([966671a](https://github.com/contriboss/vein/commit/966671a53dd68adbc21e7d54a2fb8f15e8a46f9b))
25+
* update syntax to rust 2024. ([0779d2e](https://github.com/contriboss/vein/commit/0779d2e9b7563e19a7e24589383a898c4d8da185))
26+
327
## [0.3.0](https://github.com/contriboss/vein/compare/v0.2.1...v0.3.0) (2025-12-28)
428

529

crates/vein-admin/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vein-admin"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2024"
55
license = "AGPL-3.0-only"
66
authors = ["Abdelkader Boudih <oss@seuros.com>"]
@@ -27,8 +27,8 @@ serde_json = "1.0.149"
2727
serde_yaml = "0.9"
2828
tokio = { version = "1.50.0", features = ["rt-multi-thread", "macros", "signal"] }
2929
tracing = "0.1.41"
30-
vein = { version = "0.4.0", path = "../.." }
31-
vein-adapter = { version = "0.3.0", path = "../vein-adapter" }
30+
vein = { version = "0.5.0", path = "../.." }
31+
vein-adapter = { version = "0.5.0", path = "../vein-adapter" }
3232

3333
[dev-dependencies]
3434
http-body-util = "0.1"

0 commit comments

Comments
 (0)