Skip to content

Commit e8147c3

Browse files
committed
chore: bump version to v0.2.20
1 parent 7a3842d commit e8147c3

13 files changed

Lines changed: 30 additions & 22 deletions

File tree

CHANGELOG.md

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

5959

6060

61+
62+
63+
## [0.2.20](https://github.com/rvben/rumdl/compare/v0.2.19...v0.2.20) - 2026-06-19
64+
65+
### Fixed
66+
67+
- **cli**: redirect removed --list-rules to the canonical commands ([7a3842d](https://github.com/rvben/rumdl/commit/7a3842d2f58d305e5bbd81e6f2cea3b996c4f410))
68+
- **parser**: correct code-region detection for comments and JSX fences ([17f975c](https://github.com/rvben/rumdl/commit/17f975ced497177f798ea4d23ba209a7e8bcd223))
6169

6270
## [0.2.19](https://github.com/rvben/rumdl/compare/v0.2.18...v0.2.19) - 2026-06-18
6371

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.19"
3+
version = "0.2.20"
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.19
210+
mise use rumdl@0.2.20
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.19
439+
rev: v0.2.20
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.19
455+
rev: v0.2.20
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.19
472+
rev: v0.2.20
473473
hooks:
474474
- id: rumdl
475475
args: [--no-exclude] # Disable all exclude patterns

docs/global-settings.md

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

13751375
```yaml
13761376
- repo: https://github.com/rvben/rumdl-pre-commit
1377-
rev: v0.2.19
1377+
rev: v0.2.20
13781378
hooks:
13791379
- id: rumdl
13801380
args: [--config=.rumdl.toml]

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.19",
3+
"version": "0.2.20",
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.2.19",
3+
"version": "0.2.20",
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.2.19",
3+
"version": "0.2.20",
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.2.19",
3+
"version": "0.2.20",
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.2.19",
3+
"version": "0.2.20",
44
"description": "rumdl binary for Linux x64 (musl/Alpine)",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)