Skip to content

Commit edbf5f9

Browse files
committed
chore(release): bump version to v0.1.42
1 parent 1d83f9b commit edbf5f9

File tree

12 files changed

+30
-20
lines changed

12 files changed

+30
-20
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.42] - 2026-03-05
11+
12+
### Fixed
13+
14+
- **MD013**: Disable code block line length checking for Rust doc comments.
15+
Code blocks in doc comments contain Rust code formatted by rustfmt
16+
(default `max_width = 100`), not prose governed by markdown line limits.
17+
Prose lines are still checked
18+
([#486](https://github.com/rvben/rumdl/issues/486), reported by @sorairolake)
19+
1020
## [0.1.41] - 2026-03-05
1121

1222
### 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.41"
3+
version = "0.1.42"
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.41
199+
mise use rumdl@0.1.42
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.41
349+
rev: v0.1.42
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.41
371+
rev: v0.1.42
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.41",
3+
"version": "0.1.42",
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.41",
3+
"version": "0.1.42",
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.41",
3+
"version": "0.1.42",
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.41",
3+
"version": "0.1.42",
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.41",
3+
"version": "0.1.42",
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.41",
3+
"version": "0.1.42",
44
"description": "rumdl binary for Linux x64 (glibc)",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)