Skip to content

Commit 5f5640b

Browse files
chore: release master
1 parent c2ebe25 commit 5f5640b

10 files changed

Lines changed: 79 additions & 15 deletions

File tree

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## [0.5.0](https://github.com/contriboss/vein/compare/v0.4.0...v0.5.0) (2026-01-06)
4+
5+
6+
### Features
7+
8+
* **admin:** add Datastar foundation ([7f9910e](https://github.com/contriboss/vein/commit/7f9910efa075fd05386991997e5d6e910a66a682))
9+
* **admin:** add Datastar refresh to dashboard stats ([e4940ae](https://github.com/contriboss/vein/commit/e4940aef9f373b84c4088c1e045d682e6f9a8b00))
10+
* **admin:** add Datastar search to catalog ([de69c7d](https://github.com/contriboss/vein/commit/de69c7d6cbc151d8e0bafc4d075b2a0ed7ef072e))
11+
* **admin:** migrate dashboard to Tera templates ([9650d85](https://github.com/contriboss/vein/commit/9650d857a919525dcbe709648e9fd21ee276efe4))
12+
* **indexer:** add tree-sitter Ruby symbol indexing with per-version storage ([8e0ae2a](https://github.com/contriboss/vein/commit/8e0ae2a1f870c91d44f2f60fb521a2a1d48f2b63))
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+
* **validate:** add binary architecture validation with goblin for platform mismatch detection ([e39eef6](https://github.com/contriboss/vein/commit/e39eef6ac5f436c3f3042ccd614984703359b8aa))
16+
17+
18+
### Bug Fixes
19+
20+
* address all 14 Copilot PR review issues (NULL comparisons, platform parsing, error handling, tests, code quality) ([d69b3e2](https://github.com/contriboss/vein/commit/d69b3e2c539105196fc6c0dfade5265d6dda99f2))
21+
* address clippy warnings ([966671a](https://github.com/contriboss/vein/commit/966671a53dd68adbc21e7d54a2fb8f15e8a46f9b))
22+
323
## [0.4.0](https://github.com/contriboss/vein/compare/v0.3.0...v0.4.0) (2025-12-28)
424

525

Cargo.lock

Lines changed: 4 additions & 4 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", "crates/vein-admin/migrat
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 RubyGems proxy/mirror server written in Rust"
@@ -92,7 +92,7 @@ chrono-machines = "0.3.0"
9292
# Time handling
9393
chrono = { version = "0.4.38", features = ["serde"] }
9494

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

9797
[dev-dependencies]
9898
tokio-test = "0.4.4"

crates/vein-adapter/CHANGELOG.md

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

3+
## [0.4.0](https://github.com/contriboss/vein/compare/v0.3.0...v0.4.0) (2026-01-06)
4+
5+
6+
### Features
7+
8+
* **indexer:** add tree-sitter Ruby symbol indexing with per-version storage ([8e0ae2a](https://github.com/contriboss/vein/commit/8e0ae2a1f870c91d44f2f60fb521a2a1d48f2b63))
9+
* prepare vein-adapter, vein-admin, and vein-admin-migration for crates.io publishing ([495af02](https://github.com/contriboss/vein/commit/495af02a3e1c56b473414c2cde609fb67382caff))
10+
* Treesitter and goblin ([c2ebe25](https://github.com/contriboss/vein/commit/c2ebe25ece5a28b6c2c6f0fccb2e820c1208914d))
11+
12+
13+
### Bug Fixes
14+
15+
* address all 14 Copilot PR review issues (NULL comparisons, platform parsing, error handling, tests, code quality) ([d69b3e2](https://github.com/contriboss/vein/commit/d69b3e2c539105196fc6c0dfade5265d6dda99f2))
16+
* update syntax to rust 2024. ([0779d2e](https://github.com/contriboss/vein/commit/0779d2e9b7563e19a7e24589383a898c4d8da185))
17+
318
## [0.3.0](https://github.com/contriboss/vein/compare/v0.2.1...v0.3.0) (2025-12-28)
419

520

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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## [0.4.0](https://github.com/contriboss/vein/compare/v0.3.0...v0.4.0) (2026-01-06)
4+
5+
6+
### Features
7+
8+
* **admin:** add Datastar foundation ([7f9910e](https://github.com/contriboss/vein/commit/7f9910efa075fd05386991997e5d6e910a66a682))
9+
* **admin:** add Datastar refresh to dashboard stats ([e4940ae](https://github.com/contriboss/vein/commit/e4940aef9f373b84c4088c1e045d682e6f9a8b00))
10+
* **admin:** add Datastar search to catalog ([de69c7d](https://github.com/contriboss/vein/commit/de69c7d6cbc151d8e0bafc4d075b2a0ed7ef072e))
11+
* **admin:** migrate dashboard to Tera templates ([9650d85](https://github.com/contriboss/vein/commit/9650d857a919525dcbe709648e9fd21ee276efe4))
12+
* **indexer:** add tree-sitter Ruby symbol indexing with per-version storage ([8e0ae2a](https://github.com/contriboss/vein/commit/8e0ae2a1f870c91d44f2f60fb521a2a1d48f2b63))
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+
* **validate:** add binary architecture validation with goblin for platform mismatch detection ([e39eef6](https://github.com/contriboss/vein/commit/e39eef6ac5f436c3f3042ccd614984703359b8aa))
16+
17+
18+
### Bug Fixes
19+
20+
* address all 14 Copilot PR review issues (NULL comparisons, platform parsing, error handling, tests, code quality) ([d69b3e2](https://github.com/contriboss/vein/commit/d69b3e2c539105196fc6c0dfade5265d6dda99f2))
21+
* address clippy warnings ([966671a](https://github.com/contriboss/vein/commit/966671a53dd68adbc21e7d54a2fb8f15e8a46f9b))
22+
* update syntax to rust 2024. ([0779d2e](https://github.com/contriboss/vein/commit/0779d2e9b7563e19a7e24589383a898c4d8da185))
23+
324
## [0.3.0](https://github.com/contriboss/vein/compare/v0.2.1...v0.3.0) (2025-12-28)
425

526

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>"]
@@ -31,8 +31,8 @@ serde_yaml = "0.9"
3131
tokio = { version = "1.43", features = ["rt-multi-thread", "macros", "signal"] }
3232
tower-http = { version = "0.6", features = ["fs"] }
3333
tracing = "0.1.41"
34-
vein = { version = "0.4.0", path = "../.." }
35-
vein-adapter = { version = "0.3.0", path = "../vein-adapter" }
34+
vein = { version = "0.5.0", path = "../.." }
35+
vein-adapter = { version = "0.5.0", path = "../vein-adapter" }
3636

3737
[dev-dependencies]
3838
http-body-util = "0.1"
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## [0.4.0](https://github.com/contriboss/vein/compare/v0.3.0...v0.4.0) (2026-01-06)
4+
5+
6+
### Features
7+
8+
* prepare vein-adapter, vein-admin, and vein-admin-migration for crates.io publishing ([495af02](https://github.com/contriboss/vein/commit/495af02a3e1c56b473414c2cde609fb67382caff))

crates/vein-admin/migration/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-admin-migration"
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>"]

0 commit comments

Comments
 (0)