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" },