Skip to content

Commit ff9237e

Browse files
committed
chore(release): bump version to 0.1.39 and update CHANGELOG
1 parent 8509d76 commit ff9237e

File tree

12 files changed

+34
-20
lines changed

12 files changed

+34
-20
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.39] - 2026-03-04
11+
12+
### Fixed
13+
14+
- **Rustdoc**: Skip MD033, MD040, MD051, and MD054 for doc comment blocks to
15+
eliminate false positives — HTML warning blocks (`<div class="warning">`),
16+
unlabeled code blocks (default to Rust), rustdoc anchors (`#method.bar`),
17+
and shortcut intra-doc links (`[crate::module]`) are all valid rustdoc syntax
18+
([#438](https://github.com/rvben/rumdl/issues/438), reported by @sorairolake)
19+
- **Config**: Fix `include` patterns in `.rumdl.toml` not discovering `.rs`
20+
files — config-based include now correctly expands the file type filter to
21+
include Rust files alongside markdown
22+
([#438](https://github.com/rvben/rumdl/issues/438), reported by @sorairolake)
23+
1024
## [0.1.38] - 2026-03-04
1125

1226
### Fixed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rumdl"
3-
version = "0.1.38"
3+
version = "0.1.39"
44
edition = "2024"
55
rust-version = "1.91.0"
66
description = "A fast Markdown linter written in Rust (Ru(st) MarkDown Linter)"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ mise ls-remote rumdl
196196
mise install rumdl
197197

198198
# Use a specific version for the project
199-
mise use rumdl@0.1.38
199+
mise use rumdl@0.1.39
200200
```
201201

202202
### Using Nix (macOS/Linux)
@@ -346,7 +346,7 @@ Add the following to your `.pre-commit-config.yaml`:
346346
```yaml
347347
repos:
348348
- repo: https://github.com/rvben/rumdl-pre-commit
349-
rev: v0.1.38
349+
rev: v0.1.39
350350
hooks:
351351
- id: rumdl # Lint only (fails on issues)
352352
- id: rumdl-fmt # Auto-format and fail if issues remain
@@ -368,7 +368,7 @@ However, for pre-commit workflows where you want to include all files, even when
368368
```yaml
369369
repos:
370370
- repo: https://github.com/rvben/rumdl-pre-commit
371-
rev: v0.1.38
371+
rev: v0.1.39
372372
hooks:
373373
- id: rumdl
374374
args: [--no-exclude] # Disable all exclude patterns

npm/cli-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rumdl/cli-darwin-arm64",
3-
"version": "0.1.38",
3+
"version": "0.1.39",
44
"description": "rumdl binary for macOS ARM64 (Apple Silicon)",
55
"license": "MIT",
66
"repository": {

npm/cli-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rumdl/cli-darwin-x64",
3-
"version": "0.1.38",
3+
"version": "0.1.39",
44
"description": "rumdl binary for macOS x64 (Intel)",
55
"license": "MIT",
66
"repository": {

npm/cli-linux-arm64-musl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rumdl/cli-linux-arm64-musl",
3-
"version": "0.1.38",
3+
"version": "0.1.39",
44
"description": "rumdl binary for Linux ARM64 (musl/Alpine)",
55
"license": "MIT",
66
"repository": {

npm/cli-linux-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rumdl/cli-linux-arm64",
3-
"version": "0.1.38",
3+
"version": "0.1.39",
44
"description": "rumdl binary for Linux ARM64 (glibc)",
55
"license": "MIT",
66
"repository": {

npm/cli-linux-x64-musl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rumdl/cli-linux-x64-musl",
3-
"version": "0.1.38",
3+
"version": "0.1.39",
44
"description": "rumdl binary for Linux x64 (musl/Alpine)",
55
"license": "MIT",
66
"repository": {

npm/cli-linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rumdl/cli-linux-x64",
3-
"version": "0.1.38",
3+
"version": "0.1.39",
44
"description": "rumdl binary for Linux x64 (glibc)",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)