diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 453ca4c..0d1bebe 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.5.2" + ".": "1.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a8e12eb..335c349 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.6.0](https://github.com/rabii-chaarani/codebaseGraph/compare/v1.5.2...v1.6.0) (2026-08-25) + + +### Features + +* **parser:** add CSS support ([#104](https://github.com/rabii-chaarani/codebaseGraph/issues/104)) ([6666b8e](https://github.com/rabii-chaarani/codebaseGraph/commit/6666b8edcaaba603a4a7a61236a458d20d8e602b)) + ## [1.5.2](https://github.com/rabii-chaarani/codebaseGraph/compare/v1.5.1...v1.5.2) (2026-08-25) diff --git a/Cargo.lock b/Cargo.lock index 9f06420..4d40d40 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -187,7 +187,7 @@ dependencies = [ [[package]] name = "codebase-graph" -version = "1.5.2" +version = "1.6.0" dependencies = [ "fs2", "lbug", @@ -758,7 +758,7 @@ dependencies = [ [[package]] name = "k-wiki" -version = "1.5.2" +version = "1.6.0" dependencies = [ "ammonia", "axum", @@ -1886,7 +1886,7 @@ dependencies = [ [[package]] name = "xtask" -version = "1.5.2" +version = "1.6.0" dependencies = [ "flate2", "serde", diff --git a/Cargo.toml b/Cargo.toml index 2f084e0..f8bcbd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codebase-graph" -version = "1.5.2" +version = "1.6.0" edition = "2021" rust-version = "1.82" description = "Native codebaseGraph CLI and MCP server for local code knowledge graphs." diff --git a/crates/k-wiki/Cargo.toml b/crates/k-wiki/Cargo.toml index 2c33ade..43eea11 100644 --- a/crates/k-wiki/Cargo.toml +++ b/crates/k-wiki/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "k-wiki" -version = "1.5.2" +version = "1.6.0" edition = "2021" rust-version = "1.82" description = "OKF knowledge wiki, projection builder, and MCP service." @@ -23,7 +23,7 @@ bundled-windows-extensions = ["codebase-graph/bundled-windows-extensions"] [dependencies] ammonia = "4.1" axum = { version = "0.8", default-features = false, features = ["http1", "json", "tokio"] } -codebase-graph = { version = "1.5.2", path = "../.." } +codebase-graph = { version = "1.6.0", path = "../.." } pulldown-cmark = { version = "0.13", default-features = false, features = ["html"] } serde = { version = "1", features = ["derive"] } serde_json = "1" diff --git a/crates/xtask/Cargo.toml b/crates/xtask/Cargo.toml index d3706a5..39a77e5 100644 --- a/crates/xtask/Cargo.toml +++ b/crates/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "1.5.2" +version = "1.6.0" edition = "2021" publish = false