From 22ab7104e0bcddbbfc3a883ac31e22b0cb9d5a4f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jun 2026 05:52:12 +0000 Subject: [PATCH] chore: release --- .changeset/rust-language-extractor.md | 5 ----- CHANGELOG.md | 6 ++++++ package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/rust-language-extractor.md diff --git a/.changeset/rust-language-extractor.md b/.changeset/rust-language-extractor.md deleted file mode 100644 index 52e1267..0000000 --- a/.changeset/rust-language-extractor.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@razakadam74/gitmsg': minor ---- - -Add Rust language extractor for symbol-aware subject lines on `.rs` files. Recognises top-level `fn`, `struct`, `enum`, `trait`, `type` aliases, and `const` declarations — including generics, `async`/`unsafe`/`const`/`extern "C"` function qualifiers, and `unsafe` auto traits. Visibility comes from the `pub` line prefix, so `pub(crate)`/`pub(super)` read as non-exported. Methods (indented inside `impl`/`trait` blocks), inline-module items, `static`, `union`, and `macro_rules!` are out of scope; see [`docs/languages/rust.md`](https://github.com/razakadam74/gitmsg/blob/main/docs/languages/rust.md) for the full pattern ladder and blind spots. diff --git a/CHANGELOG.md b/CHANGELOG.md index ed012b6..042c3ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @razakadam74/gitmsg +## 0.8.0 + +### Minor Changes + +- 0e2c696: Add Rust language extractor for symbol-aware subject lines on `.rs` files. Recognises top-level `fn`, `struct`, `enum`, `trait`, `type` aliases, and `const` declarations — including generics, `async`/`unsafe`/`const`/`extern "C"` function qualifiers, and `unsafe` auto traits. Visibility comes from the `pub` line prefix, so `pub(crate)`/`pub(super)` read as non-exported. Methods (indented inside `impl`/`trait` blocks), inline-module items, `static`, `union`, and `macro_rules!` are out of scope; see [`docs/languages/rust.md`](https://github.com/razakadam74/gitmsg/blob/main/docs/languages/rust.md) for the full pattern ladder and blind spots. + ## 0.7.0 ### Minor Changes diff --git a/package.json b/package.json index 354cf55..218154d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@razakadam74/gitmsg", - "version": "0.7.0", + "version": "0.8.0", "publishConfig": { "access": "public" },