Skip to content

Commit 9faf469

Browse files
committed
chore: bump version to v0.2.52
1 parent e897556 commit 9faf469

17 files changed

Lines changed: 34 additions & 26 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.52](https://github.com/rvben/rumdl/compare/v0.2.51...v0.2.52) - 2026-08-05
9+
10+
### Fixed
11+
12+
- **md012**: report blank lines before a code block that ends the document (#791) ([e897556](https://github.com/rvben/rumdl/commit/e897556460ba0209ad9e768ae64ec5579e1715bc))
13+
- **rules**: treat a template shortcode tag as opaque markup ([6962184](https://github.com/rvben/rumdl/commit/696218496edc7c1aa9403a970311fb19085930f9))
14+
- **cli**: report a piped document's findings on stdout like every other run ([47f8a50](https://github.com/rvben/rumdl/commit/47f8a50d7cf8cf98754a13cfe2adb12868d05a89))
15+
816
## [0.2.51](https://github.com/rvben/rumdl/compare/v0.2.50...v0.2.51) - 2026-08-05
917

1018
### Added

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.2.51"
3+
version = "0.2.52"
44
edition = "2024"
55
rust-version = "1.94.0"
66
description = "A fast Markdown linter written in Rust (Ru(st) MarkDown Linter)"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ mise ls-remote rumdl
207207
mise install rumdl
208208

209209
# Use a specific version for the project
210-
mise use rumdl@0.2.51
210+
mise use rumdl@0.2.52
211211
```
212212

213213
### Using Nix (macOS/Linux)
@@ -436,7 +436,7 @@ Add the following to your `.pre-commit-config.yaml`:
436436
```yaml
437437
repos:
438438
- repo: https://github.com/rvben/rumdl-pre-commit
439-
rev: v0.2.51
439+
rev: v0.2.52
440440
hooks:
441441
- id: rumdl # Lint only; add args [--fix] to auto-fix
442442
- id: rumdl-fmt # Pure format, always exits 0
@@ -452,7 +452,7 @@ This mirrors the `ruff` + `ruff-format` split: the linter hook reports by defaul
452452
```yaml
453453
repos:
454454
- repo: https://github.com/rvben/rumdl-pre-commit
455-
rev: v0.2.51
455+
rev: v0.2.52
456456
hooks:
457457
- id: rumdl
458458
args: [--fix] # Auto-fix violations in place
@@ -469,7 +469,7 @@ However, for pre-commit workflows where you want to include all files, even when
469469
```yaml
470470
repos:
471471
- repo: https://github.com/rvben/rumdl-pre-commit
472-
rev: v0.2.51
472+
rev: v0.2.52
473473
hooks:
474474
- id: rumdl
475475
args: [--no-exclude] # Disable all exclude patterns

docs/getting-started/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Add to `.pre-commit-config.yaml`:
9696
```yaml
9797
repos:
9898
- repo: https://github.com/rvben/rumdl-pre-commit
99-
rev: v0.2.51 # Use latest version
99+
rev: v0.2.52 # Use latest version
100100
hooks:
101101
- id: rumdl
102102
```

docs/global-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1544,7 +1544,7 @@ find . -name "*.md" -o -name "*.markdown" | head -10
15441544

15451545
```yaml
15461546
- repo: https://github.com/rvben/rumdl-pre-commit
1547-
rev: v0.2.51
1547+
rev: v0.2.52
15481548
hooks:
15491549
- id: rumdl
15501550
args: [--config=.rumdl.toml]

docs/mdformat-comparison.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ line-length = 80
232232
233233
# After
234234
- repo: https://github.com/rvben/rumdl-pre-commit
235-
rev: v0.2.51
235+
rev: v0.2.52
236236
hooks:
237237
- id: rumdl
238238
```

docs/usage/ci-cd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The `v0` tag always points to the latest stable release.
4040
```yaml
4141
- uses: rvben/rumdl@v0
4242
with:
43-
version: "0.2.51"
43+
version: "0.2.52"
4444
path: docs/
4545
```
4646

docs/usage/pre-commit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Add to your `.pre-commit-config.yaml`:
1313
```yaml title=".pre-commit-config.yaml"
1414
repos:
1515
- repo: https://github.com/rvben/rumdl-pre-commit
16-
rev: v0.2.51 # Use latest version
16+
rev: v0.2.52 # Use latest version
1717
hooks:
1818
- id: rumdl # Lint only; add args [--fix] to auto-fix
1919
- id: rumdl-fmt # Pure format, always exits 0

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.2.51",
3+
"version": "0.2.52",
44
"description": "rumdl binary for macOS ARM64 (Apple Silicon)",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)